blob: cf63d2939c7d2ccbd4607876af33b646ad82c6eb [file] [log] [blame]
package org.eclipse.om2m.commons.obix;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Feed oBIX object
* @author Francois
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "feed")
@XmlRootElement
public class Feed extends Obj{
@XmlAttribute(name = "displayName")
protected String displayName;
@XmlAttribute(name = "display")
protected String display;
@XmlAttribute(name = "icon")
@XmlSchemaType(name = "anyURI")
protected String icon;
@XmlAttribute(name = "precision")
protected Integer precision;
@XmlAttribute(name = "status")
protected Status status;
@XmlAttribute(name = "unit")
protected String unit;
@XmlAttribute(name = "writable")
protected Boolean writable;
@XmlAttribute(name = "href")
protected String href;
@XmlAttribute(name = "null")
protected Boolean _null;
/**
* @return the displayName
*/
public String getDisplayName() {
return displayName;
}
/**
* @param displayName the displayName to set
*/
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
/**
* @return the display
*/
public String getDisplay() {
return display;
}
/**
* @param display the display to set
*/
public void setDisplay(String display) {
this.display = display;
}
/**
* @return the icon
*/
public String getIcon() {
return icon;
}
/**
* @param icon the icon to set
*/
public void setIcon(String icon) {
this.icon = icon;
}
/**
* @return the precision
*/
public Integer getPrecision() {
return precision;
}
/**
* @param precision the precision to set
*/
public void setPrecision(Integer precision) {
this.precision = precision;
}
/**
* @return the status
*/
public Status getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(Status status) {
this.status = status;
}
/**
* @return the unit
*/
public String getUnit() {
return unit;
}
/**
* @param unit the unit to set
*/
public void setUnit(String unit) {
this.unit = unit;
}
/**
* @return the writable
*/
public Boolean getWritable() {
return writable;
}
/**
* @param writable the writable to set
*/
public void setWritable(Boolean writable) {
this.writable = writable;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the href
*/
public String getHref() {
return href;
}
/**
* @param href the href to set
*/
public void setHref(String href) {
this.href = href;
}
/**
* @return the _null
*/
public Boolean get_null() {
return _null;
}
/**
* @param _null the _null to set
*/
public void set_null(Boolean _null) {
this._null = _null;
}
}