Projet

Général

Profil

Télécharger (1,95 ko) Statistiques
| Branche: | Tag: | Révision:
package org.fosstrak.epcis.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;

/**
* <p>
* Java class for PartnerIdentification complex type.
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="PartnerIdentification">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;attribute name="Authority" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartnerIdentification", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", propOrder = { "value" })
public class PartnerIdentification {

@XmlValue
protected String value;
@XmlAttribute(name = "Authority")
protected String authority;

/**
* Gets the value of the value property.
*
* @return possible object is {@link String }
*/
public String getValue() {
return value;
}

/**
* Sets the value of the value property.
*
* @param value
* allowed object is {@link String }
*/
public void setValue(String value) {
this.value = value;
}

/**
* Gets the value of the authority property.
*
* @return possible object is {@link String }
*/
public String getAuthority() {
return authority;
}

/**
* Sets the value of the authority property.
*
* @param value
* allowed object is {@link String }
*/
public void setAuthority(String value) {
this.authority = value;
}

}
(53-53/91)