GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
eu/gls_group/fpcs/v1/common/Adapter1.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
3
4import javax.xml.bind.annotation.adapters.XmlAdapter;
5import eu.glsgroup.fpcs.dto.carrierconnect.Carrier;
6
7public 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}