GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
eu/gls_group/fpcs/v1/common/Adapter1.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.common;
3 
4 import javax.xml.bind.annotation.adapters.XmlAdapter;
5 import eu.glsgroup.fpcs.dto.carrierconnect.Carrier;
6 
7 public class Adapter1
8  extends XmlAdapter<String, Carrier>
9 {
10 
11 
12  public Carrier unmarshal(String value) {
13  return (eu.glsgroup.fpcs.soap.util.EnumTypeAdapter.unmarshalCarrier(value));
14  }
15 
16  public String marshal(Carrier value) {
17  return (eu.glsgroup.fpcs.soap.util.EnumTypeAdapter.marshalCarrier(value));
18  }
19 
20 }