net.sourceforge.ccxjc.it.model.pub.collections.valueclass.ebics.h003
Class HVUOrderDetailsType

java.lang.Object
  extended by net.sourceforge.ccxjc.it.model.pub.collections.valueclass.ebics.h003.HVUOrderDetailsType
All Implemented Interfaces:
Serializable, Cloneable

public class HVUOrderDetailsType
extends Object
implements Serializable, Cloneable

Datentyp für HVU-Auftragsdetails.

Java class for HVUOrderDetailsType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="HVUOrderDetailsType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="OrderType" type="{http://www.ebics.org/H003}OrderTBaseType"/>
         <element name="OrderID" type="{http://www.ebics.org/H003}OrderIDType"/>
         <element name="OrderDataSize" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
         <element name="SigningInfo" type="{http://www.ebics.org/H003}HVUSigningInfoType"/>
         <element name="SignerInfo" type="{http://www.ebics.org/H003}SignerInfoType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="OriginatorInfo" type="{http://www.ebics.org/H003}HVUOriginatorInfoType"/>
         <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  List<Object> any
           
protected  BigInteger orderDataSize
           
protected  String orderID
           
protected  String orderType
           
protected  HVUOriginatorInfoType originatorInfo
           
protected  List<SignerInfoType> signerInfo
           
protected  HVUSigningInfoType signingInfo
           
 
Constructor Summary
HVUOrderDetailsType()
          Creates a new net.sourceforge.ccxjc.it.model.pub.collections.valueclass.ebics.h003.HVUOrderDetailsType instance.
HVUOrderDetailsType(HVUOrderDetailsType o)
          Creates a new net.sourceforge.ccxjc.it.model.pub.collections.valueclass.ebics.h003.HVUOrderDetailsType instance by copying a given instance.
 
Method Summary
 HVUOrderDetailsType clone()
          Creates and returns a copy of this object.
static void copyAny(List<Object> source, List<Object> target)
          Copies all values of property Any.
static void copySignerInfo(List<SignerInfoType> source, List<SignerInfoType> target)
          Copies all values of property SignerInfo.
 List<Object> getAny()
          Gets the value of the any property.
 BigInteger getOrderDataSize()
          Gets the value of the orderDataSize property.
 String getOrderID()
          Gets the value of the orderID property.
 String getOrderType()
          Gets the value of the orderType property.
 HVUOriginatorInfoType getOriginatorInfo()
          Gets the value of the originatorInfo property.
 List<SignerInfoType> getSignerInfo()
          Gets the value of the signerInfo property.
 HVUSigningInfoType getSigningInfo()
          Gets the value of the signingInfo property.
 void setOrderDataSize(BigInteger value)
          Sets the value of the orderDataSize property.
 void setOrderID(String value)
          Sets the value of the orderID property.
 void setOrderType(String value)
          Sets the value of the orderType property.
 void setOriginatorInfo(HVUOriginatorInfoType value)
          Sets the value of the originatorInfo property.
 void setSigningInfo(HVUSigningInfoType value)
          Sets the value of the signingInfo property.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

orderType

protected String orderType

orderID

protected String orderID

orderDataSize

protected BigInteger orderDataSize

signingInfo

protected HVUSigningInfoType signingInfo

signerInfo

protected List<SignerInfoType> signerInfo

originatorInfo

protected HVUOriginatorInfoType originatorInfo

any

protected List<Object> any
Constructor Detail

HVUOrderDetailsType

public HVUOrderDetailsType()
Creates a new net.sourceforge.ccxjc.it.model.pub.collections.valueclass.ebics.h003.HVUOrderDetailsType instance.


HVUOrderDetailsType

public HVUOrderDetailsType(HVUOrderDetailsType o)
Creates a new net.sourceforge.ccxjc.it.model.pub.collections.valueclass.ebics.h003.HVUOrderDetailsType instance by copying a given instance.

Parameters:
o - The instance to copy or null.
Method Detail

getOrderType

public String getOrderType()
Gets the value of the orderType property.

Returns:
possible object is String

setOrderType

public void setOrderType(String value)
Sets the value of the orderType property.

Parameters:
value - allowed object is String

getOrderID

public String getOrderID()
Gets the value of the orderID property.

Returns:
possible object is String

setOrderID

public void setOrderID(String value)
Sets the value of the orderID property.

Parameters:
value - allowed object is String

getOrderDataSize

public BigInteger getOrderDataSize()
Gets the value of the orderDataSize property.

Returns:
possible object is BigInteger

setOrderDataSize

public void setOrderDataSize(BigInteger value)
Sets the value of the orderDataSize property.

Parameters:
value - allowed object is BigInteger

getSigningInfo

public HVUSigningInfoType getSigningInfo()
Gets the value of the signingInfo property.

Returns:
possible object is HVUSigningInfoType

setSigningInfo

public void setSigningInfo(HVUSigningInfoType value)
Sets the value of the signingInfo property.

Parameters:
value - allowed object is HVUSigningInfoType

getSignerInfo

public List<SignerInfoType> getSignerInfo()
Gets the value of the signerInfo property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the signerInfo property.

For example, to add a new item, do as follows:

    getSignerInfo().add(newItem);
 

Objects of the following type(s) are allowed in the list SignerInfoType


getOriginatorInfo

public HVUOriginatorInfoType getOriginatorInfo()
Gets the value of the originatorInfo property.

Returns:
possible object is HVUOriginatorInfoType

setOriginatorInfo

public void setOriginatorInfo(HVUOriginatorInfoType value)
Sets the value of the originatorInfo property.

Parameters:
value - allowed object is HVUOriginatorInfoType

getAny

public List<Object> getAny()
Gets the value of the any property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the any property.

For example, to add a new item, do as follows:

    getAny().add(newItem);
 

Objects of the following type(s) are allowed in the list Element Object


copySignerInfo

public static void copySignerInfo(List<SignerInfoType> source,
                                  List<SignerInfoType> target)
Copies all values of property SignerInfo.

Parameters:
target - The target to copy source to.
source - The source to copy from.
Throws:
NullPointerException - if source or target is null.

copyAny

public static void copyAny(List<Object> source,
                           List<Object> target)
Copies all values of property Any.

Parameters:
target - The target to copy source to.
source - The source to copy from.
Throws:
NullPointerException - if source or target is null.

clone

public HVUOrderDetailsType clone()
Creates and returns a copy of this object.

Overrides:
clone in class Object
Returns:
A clone of this instance.


Copyright © 2009 The CC-XJC Community. All Rights Reserved.