Class DeviceExtension
java.lang.Object
org.bremersee.garmin.garmindevice.v2.model.ext.DeviceExtension
- All Implemented Interfaces:
Serializable
Garmin Device extension schema version 2.0 - For more information on Garmin Device schema, see http://www.garmin.com/xmlschemas/GarminDevice/v2
Java class for DeviceExtension_t complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DeviceExtension_t">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Ifix" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
<element name="PhoneNumber" type="{http://www.garmin.com/xmlschemas/GarminDeviceExtensions/v2}PhoneNumber_t" minOccurs="0"/>
<element name="IMEI" type="{http://www.garmin.com/xmlschemas/GarminDeviceExtensions/v2}IMEI_t" minOccurs="0"/>
<element name="IMSI" type="{http://www.garmin.com/xmlschemas/GarminDeviceExtensions/v2}IMSI_t" minOccurs="0"/>
<element name="ActiveItem" type="{http://www.garmin.com/xmlschemas/GarminDeviceExtensions/v2}ActiveItem_t" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the activeItems property.getIfix()Gets the value of the ifix property.getIMEI()Gets the value of the imei property.getIMSI()Gets the value of the imsi property.Gets the value of the phoneNumber property.voidSets the value of the ifix property.voidSets the value of the imei property.voidSets the value of the imsi property.voidsetPhoneNumber(String value) Sets the value of the phoneNumber property.
-
Field Details
-
ifix
-
phoneNumber
-
imei
-
imsi
-
activeItems
-
-
Constructor Details
-
DeviceExtension
public DeviceExtension()
-
-
Method Details
-
getIfix
Gets the value of the ifix property.- Returns:
- possible object is
Long
-
setIfix
Sets the value of the ifix property.- Parameters:
value- allowed object isLong
-
getPhoneNumber
Gets the value of the phoneNumber property.- Returns:
- possible object is
String
-
setPhoneNumber
Sets the value of the phoneNumber property.- Parameters:
value- allowed object isString
-
getIMEI
Gets the value of the imei property.- Returns:
- possible object is
String
-
setIMEI
Sets the value of the imei property.- Parameters:
value- allowed object isString
-
getIMSI
Gets the value of the imsi property.- Returns:
- possible object is
String
-
setIMSI
Sets the value of the imsi property.- Parameters:
value- allowed object isString
-
getActiveItems
Gets the value of the activeItems 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 Jakarta XML Binding object. This is why there is not a
setmethod for the activeItems property.For example, to add a new item, do as follows:
getActiveItems().add(newItem);Objects of the following type(s) are allowed in the list
ActiveItemT- Returns:
- The value of the activeItems property.
-