2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
 
    4 import java.math.BigDecimal;
 
    5 import javax.xml.bind.annotation.XmlAccessType;
 
    6 import javax.xml.bind.annotation.XmlAccessorType;
 
    7 import javax.xml.bind.annotation.XmlElement;
 
    8 import javax.xml.bind.annotation.XmlType;
 
    9 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
 
   10 import org.w3._2001.xmlschema.Adapter3;
 
   39 @XmlAccessorType(XmlAccessType.FIELD)
 
   40 @XmlType(name = 
"AddOnLiabilityService", propOrder = {
 
   48     @XmlElement(name = 
"ServiceName", required = 
true)
 
   49     protected String serviceName;
 
   50     @XmlElement(name = "Amount", required = true, type = String.class)
 
   52     protected BigDecimal amount;
 
   53     @XmlElement(name = "Currency", required = true)
 
   54     protected String currency;
 
   55     @XmlElement(name = "ParcelContent")
 
   56     protected String parcelContent;
 
   66     public String getServiceName() {
 
   79         this.serviceName = value;
 
  127         this.currency = value;
 
  139         return parcelContent;
 
  151         this.parcelContent = value;