GLS ShipIT  3.5.15
GLS ShipIT - REST services
eu/gls_group/fpcs/v1/shipmentprocessing/types/Adapter2.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.shipmentprocessing.types;
3 
4 import javax.xml.bind.annotation.adapters.XmlAdapter;
5 import eu.glsgroup.fpcs.dto.config.BarcodeContentType;
6 
7 public 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 }