/** * Copyright (c) 2011, SOCIETIES Consortium (WATERFORD INSTITUTE OF TECHNOLOGY (TSSG), HERIOT-WATT UNIVERSITY (HWU), SOLUTA.NET * (SN), GERMAN AEROSPACE CENTRE (Deutsches Zentrum fuer Luft- und Raumfahrt e.V.) (DLR), Zavod za varnostne tehnologije * informacijske družbe in elektronsko poslovanje (SETCCE), INSTITUTE OF COMMUNICATION AND COMPUTER SYSTEMS (ICCS), LAKE * COMMUNICATIONS (LAKE), INTEL PERFORMANCE LEARNING SOLUTIONS LTD (INTEL), PORTUGAL TELECOM INOVAÇÃO, SA (PTIN), IBM Corp., * INSTITUT TELECOM (ITSUD), AMITEC DIACHYTI EFYIA PLIROFORIKI KAI EPIKINONIES ETERIA PERIORISMENIS EFTHINIS (AMITEC), TELECOM * ITALIA S.p.a.(TI), TRIALOG (TRIALOG), Stiftelsen SINTEF (SINTEF), NEC EUROPE LTD (NEC)) * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following * conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT * SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.societies.api.context.model; import java.util.Date; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * This class is used to represent context attributes which describe the * properties of a {@link CtxEntityBean}. Multiple <code>CtxAttributeBean</code> * objects can be assigned to an entity. For example, concepts such as the name, * the age, and the location of a person entity are described by different * attributes. Similarly, attributes describing a device's properties might be * the identity, the voltage, and the operational status of the device. * Essentially, CtxAttributeBean objects are used to identify an entity's status in * terms of its static and dynamic properties and therefore, capture all context * information items that characterise the situation of the owner entity. Note * that the containing entity is called the attribute's scope. * <p> * The value of a <code>CtxAttributeBean</code> can be set and retrieved using the * appropriate setter and getter method. The following value types are supported: * <dl> * <dt><code>String</code></dt> * <dd>Text value.</dd> * <dt><code>Integer</code></dt> * <dd>Integer value.</dd> * <dt><code>Double</code></dt> * <dd>Double-precision floating point numeric value.</dd> * <dt><code>byte[]</code></dt> * <dd>Binary value.</dd> * </dl> * The following is an example of a context attribute holding a * <code>String</code> value: * <pre> * // Assuming we have obtained a reference to the context attribute * CtxAttributeBean nameAttr; * // Initialise or update its value * nameAttr.setStringValue("Sakis Rouvas"); * // Retrieve its value * String name = nameAttr.getStringValue(); * </pre> * <p> * The <code>CtxAttributeBean</code> class also provides access to the history flag * which controls whether the represented attribute is maintained in the * historic context database. * * @see CtxAttributeIdentifierBean * @see CtxEntityBean * @author <a href="mailto:nicolas.liampotis@cn.ntua.gr">Nicolas Liampotis</a> (ICCS) * @since 0.0.1 */ @XmlType(namespace="http://societies.org/api/schema/context/model", propOrder = {"stringValue", "integerValue", "doubleValue", "binaryValue", "valueType", "valueMetric", "quality", "sourceId", "historyRecorded"}) @XmlAccessorType(XmlAccessType.FIELD) public class CtxAttributeBean extends CtxModelObjectBean { private static final long serialVersionUID = 2885099443175534995L; /** The text value of this context attribute. */ @XmlElement(required = true, nillable=true) private String stringValue; /** The integer value of this context attribute. */ @XmlElement(required = true, nillable=true) private Integer integerValue; /** The double-precision floating point numeric value of this context attribute.*/ @XmlElement(required = true, nillable=true) private Double doubleValue; /** The binary value of this context attribute. */ @XmlElement(required = true, nillable=true) private byte[] binaryValue; /** The value type of this context attribute */ @XmlElement(required = true, nillable=false) private CtxAttributeValueTypeBean valueType = CtxAttributeValueTypeBean.EMPTY; /** The metric for the current context attribute value */ @XmlElement(required = true, nillable=true) private String valueMetric; /** The QoC meta-data. */ @XmlElement(required = true, nillable=false) private CtxQualityBean quality; /** The identifier of the context source for the current attribute value. */ @XmlElement(required = true, nillable=true) private String sourceId; /** The history flag of this context attribute. */ @XmlElement(required = true, nillable=false) private boolean historyRecorded; CtxAttributeBean() {} /** * Constructs a CtxAttributeBean with the specified identifier. * * @param id * the identifier of the newly created context attribute */ public CtxAttributeBean(CtxAttributeIdentifierBean id) { super(id); this.quality = new CtxQualityBean(this); } /** * Returns the identifier of this context attribute. * * @return the identifier of this context attribute. */ @Override public CtxAttributeIdentifierBean getId() { return (CtxAttributeIdentifierBean) super.getId(); } /** * Returns the identifier of the context entity containing this attribute * * @return the identifier of the context entity containing this attribute */ public CtxEntityIdentifierBean getScope() { return this.getId().getScope(); } /** * Returns the value of this context attribute or <code>null</code> * if the value is not a String. * * @return the value of this context attribute or <code>null</code> * if the value is not a String. * @see #getIntegerValue() * @see #getDoubleValue() * @see #getBinaryValue() */ public String getStringValue() { return this.stringValue; } /** * Sets the value of this context attribute to the specified String. * * @param value * the String value to set * @see #setIntegerValue(Integer) * @see #setDoubleValue(Double) * @see #setBinaryValue(byte[]) */ public void setStringValue(String value) { this.stringValue = value; this.integerValue = null; this.doubleValue = null; this.binaryValue = null; // Update the last update time this.quality.setLastUpdated(new Date()); } /** * Returns the value of this context attribute or <code>null</code> * if the value is not an Integer. * * @return the value of this context attribute or <code>null</code> * if the value is not an Integer. * @see #getStringValue() * @see #getDoubleValue() * @see #getBinaryValue() */ public Integer getIntegerValue() { return this.integerValue; } /** * Sets the value of this context attribute to the specified Integer. * * @param value * the Integer value to set * @see #setStringValue(String) * @see #setDoubleValue(Double) * @see #setBinaryValue(byte[]) */ public void setIntegerValue(Integer value) { this.stringValue = null; this.integerValue = value; this.doubleValue = null; this.binaryValue = null; // Update the last update time this.quality.setLastUpdated(new Date()); } /** * Returns the value of this context attribute or <code>null</code> * if the value is not a Double. * * @return the value of this context attribute or <code>null</code> * if the value is not a Double. * @see #getStringValue() * @see #getIntegerValue() * @see #getBinaryValue() */ public Double getDoubleValue() { return this.doubleValue; } /** * Sets the value of this context attribute to the specified Double. * * @param value * the Double value to set * @see #setStringValue(String) * @see #setIntegerValue(Integer) * @see #setBinaryValue(byte[]) */ public void setDoubleValue(Double value) { this.stringValue = null; this.integerValue = null; this.doubleValue = value; this.binaryValue = null; // Update the last update time this.quality.setLastUpdated(new Date()); } /** * Returns the value of this context attribute or <code>null</code> * if the value is not a byte array. * * @return the value of this context attribute or <code>null</code> * if the value is not a byte array. * @see #getStringValue() * @see #getIntegerValue() * @see #getDoubleValue() */ public byte[] getBinaryValue() { return this.binaryValue; } /** * Sets the value of this context attribute to the specified byte array. * * @param value * the byte array value to set * @see #setStringValue(String) * @see #setIntegerValue(Integer) * @see #setDoubleValue(Double) */ public void setBinaryValue(byte[] value) { this.stringValue = null; this.integerValue = null; this.doubleValue = null; this.binaryValue = value; // Update the last update time this.quality.setLastUpdated(new Date()); } /** * Returns the value type of this context attribute * * @return the value type of this context attribute */ public CtxAttributeValueTypeBean getValueType() { return this.valueType; } /** * Sets the value type of this context attribute * * @param valueType * the value type to set for this context attribute * @see CtxAttributeValueTypeBean */ public void setValueType(CtxAttributeValueTypeBean valueType) { this.valueType = valueType; } /** * Returns the metric for the context attribute value. * * @return the metric for the context attribute value. */ public String getValueMetric() { return this.valueMetric; } /** * Sets the metric for the context attribute value. * * @param valueMetric * the metric for the context attribute value to set */ public void setValueMetric(String valueMetric) { this.valueMetric = valueMetric; } /** * Returns the Quality of Context (QoC) information associated to this context * attribute. * * @return the <code>CtxQualityBean</code> associated to this context * attribute. * @see CtxQualityBean */ public CtxQualityBean getQuality() { return this.quality; } /** * Returns the identifier of the context source for the current attribute value. * * @return the identifier of the context source for the current attribute value. */ public String getSourceId() { return this.sourceId; } /** * Sets the identifier of the context source for the current attribute value. * * @param sourceId * the identifier of the context source to set. */ public void setSourceId(String sourceId) { this.sourceId = sourceId; } /** * Checks if this context attribute is maintained in the context history * repository * * @return <code>true</code> if this context attribute is maintained in the * context history repository; <code>false</code> otherwise */ public boolean isHistoryRecorded() { return this.historyRecorded; } /** * Controls if this context attribute is to be maintained in the context * history repository * * @param historyRecorded * set to <code>true</code> if this context attribute is to be * maintained in the context history repository; * <code>false</code> otherwise */ public void setHistoryRecorded(boolean historyRecorded) { this.historyRecorded = historyRecorded; } }