GLS ShipIT  3.3.20
GLS ShipIT - REST services
eu/glsgroup/ws/parcelshopsearch/Adapter1.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
3 
4 import java.math.BigDecimal;
5 import javax.xml.bind.annotation.adapters.XmlAdapter;
6 
7 public class Adapter1
8  extends XmlAdapter<String, BigDecimal>
9 {
10 
11 
12  public BigDecimal unmarshal(String value) {
13  return (eu.glsgroup.fpcs.soap.util.DataTypeAdapter.unmarshalBigDecimal(value));
14  }
15 
16  public String marshal(BigDecimal value) {
17  return (eu.glsgroup.fpcs.soap.util.DataTypeAdapter.marshalBigDecimal(value));
18  }
19 
20 }