Package org.cxml
Class AssetInfo
- java.lang.Object
-
- org.cxml.AssetInfo
-
public class AssetInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Extrinsic>extrinsicprotected java.lang.Stringlocationprotected java.lang.StringserialNumberprotected java.lang.StringtagNumber
-
Constructor Summary
Constructors Constructor Description AssetInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Extrinsic>getExtrinsic()Gets the value of the extrinsic property.java.lang.StringgetLocation()Gets the value of the location property.java.lang.StringgetSerialNumber()Gets the value of the serialNumber property.java.lang.StringgetTagNumber()Gets the value of the tagNumber property.voidsetLocation(java.lang.String value)Sets the value of the location property.voidsetSerialNumber(java.lang.String value)Sets the value of the serialNumber property.voidsetTagNumber(java.lang.String value)Sets the value of the tagNumber property.
-
-
-
Field Detail
-
tagNumber
protected java.lang.String tagNumber
-
serialNumber
protected java.lang.String serialNumber
-
location
protected java.lang.String location
-
extrinsic
protected java.util.List<Extrinsic> extrinsic
-
-
Method Detail
-
getTagNumber
public java.lang.String getTagNumber()
Gets the value of the tagNumber property.- Returns:
- possible object is
String
-
setTagNumber
public void setTagNumber(java.lang.String value)
Sets the value of the tagNumber property.- Parameters:
value- allowed object isString
-
getSerialNumber
public java.lang.String getSerialNumber()
Gets the value of the serialNumber property.- Returns:
- possible object is
String
-
setSerialNumber
public void setSerialNumber(java.lang.String value)
Sets the value of the serialNumber property.- Parameters:
value- allowed object isString
-
getLocation
public java.lang.String getLocation()
Gets the value of the location property.- Returns:
- possible object is
String
-
setLocation
public void setLocation(java.lang.String value)
Sets the value of the location property.- Parameters:
value- allowed object isString
-
getExtrinsic
public java.util.List<Extrinsic> getExtrinsic()
Gets the value of the extrinsic 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
setmethod for the extrinsic property.For example, to add a new item, do as follows:
getExtrinsic().add(newItem);Objects of the following type(s) are allowed in the list
Extrinsic
-
-