//Set the update interval, i.e. the frequency of resource updates
this.updateInterval = updateInterval;
schedulePeriodicResourceUpdate();
//Sets the link attributes for supported content types ('ct')
this.setLinkAttribute(new LongLinkAttribute(LongLinkAttribute.CONTENT_TYPE, ContentFormat.TEXT_PLAIN_UTF8));
this.setLinkAttribute(new LongLinkAttribute(LongLinkAttribute.CONTENT_TYPE, ContentFormat.APP_XML));
//Sets the link attribute for the resource type ('rt')
String attributeValue = "The actual UTC time (updated every " + updateInterval + " millis)";
this.setLinkAttribute(new StringLinkAttribute(StringLinkAttribute.RESOURCE_TYPE, attributeValue));
//Sets the link attribute for max-size estimation ('sz')
this.setLinkAttribute(new LongLinkAttribute(LongLinkAttribute.MAX_SIZE_ESTIMATE, 100L));
//Sets the link attribute for interface description ('if')
this.setLinkAttribute(new StringLinkAttribute(StringLinkAttribute.INTERFACE, "CoAP GET"));
}