org.w3._2005._05.xmlmime.HexBinary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globallink-connect-api Show documentation
Show all versions of globallink-connect-api Show documentation
GlobalLink Connect Java is a library to connect your system to GlobalLink Project Director SOAP API.
The newest version!
package org.w3._2005._05.xmlmime;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.HexBinaryAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for hexBinary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="hexBinary">
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>hexBinary">
* <attribute ref="{http://www.w3.org/2005/05/xmlmime}contentType"/>
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "hexBinary", propOrder = {
"value"
})
public class HexBinary {
@XmlValue
@XmlJavaTypeAdapter(HexBinaryAdapter.class)
@XmlSchemaType(name = "hexBinary")
protected byte[] value;
@XmlAttribute(name = "contentType", namespace = "http://www.w3.org/2005/05/xmlmime")
protected String contentType;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public byte[] getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(byte[] value) {
this.value = value;
}
/**
* Gets the value of the contentType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContentType() {
return contentType;
}
/**
* Sets the value of the contentType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContentType(String value) {
this.contentType = value;
}
}