GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
eu/gls_group/fpcs/v1/shipmentprocessing/types/Adapter2.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
3
4import javax.xml.bind.annotation.adapters.XmlAdapter;
5import eu.glsgroup.fpcs.dto.config.BarcodeContentType;
6
7public class Adapter2
8 extends XmlAdapter<String, BarcodeContentType>
9{
10
11
12 public BarcodeContentType unmarshal(String value) {
13 return (eu.glsgroup.fpcs.soap.util.EnumTypeAdapter.unmarshalBarcodeContentType(value));
14 }
15
16 public String marshal(BarcodeContentType value) {
17 return (eu.glsgroup.fpcs.soap.util.EnumTypeAdapter.marshalBarcodeContentType(value));
18 }
19
20}