}
@Override
- public void addContext(String context) {
+ public Identity addContext(String context) {
contexts.add(context);
+ return this;
}
@Override
- public void removeContext(String context) {
+ public Identity removeContext(String context) {
contexts.remove(context);
+ return this;
}
@Override
}
@Override
- public void setProperty(String name, String value) {
+ public Identity setProperty(String name, String value) {
properties.put(name, value);
+ return this;
}
@Override
- public void removeProperty(String name) {
+ public Identity removeProperty(String name) {
properties.remove(name);
+ return this;
}
@Override
}
@Override
- public void setTrust(OwnIdentity ownIdentity, Trust trust) {
+ public Identity setTrust(OwnIdentity ownIdentity, Trust trust) {
trustCache.put(ownIdentity, trust);
+ return this;
}
@Override
- public void removeTrust(OwnIdentity ownIdentity) {
+ public Identity removeTrust(OwnIdentity ownIdentity) {
trustCache.remove(ownIdentity);
+ return this;
}
//
return insertUri;
}
+ @Override
+ public OwnIdentity addContext(String context) {
+ return (OwnIdentity) super.addContext(context);
+ }
+
+ @Override
+ public OwnIdentity removeContext(String context) {
+ return (OwnIdentity) super.removeContext(context);
+ }
+
+ @Override
+ public OwnIdentity setProperty(String name, String value) {
+ return (OwnIdentity) super.setProperty(name, value);
+ }
+
+ @Override
+ public OwnIdentity removeProperty(String name) {
+ return (OwnIdentity) super.removeProperty(name);
+ }
+
//
// OBJECT METHODS
//
* @param context
* The context to add
*/
- public void addContext(String context);
+ public Identity addContext(String context);
/**
* Sets all contexts of this identity.
* @param context
* The context to remove
*/
- public void removeContext(String context);
+ public Identity removeContext(String context);
/**
* Returns all properties of this identity.
* @param value
* The value of the property
*/
- public void setProperty(String name, String value);
+ public Identity setProperty(String name, String value);
/**
* Sets all properties of this identity.
* @param name
* The name of the property to remove
*/
- public void removeProperty(String name);
+ public Identity removeProperty(String name);
/**
* Retrieves the trust that this identity receives from the given own
* @param trust
* The trust given by the given own identity
*/
- public void setTrust(OwnIdentity ownIdentity, Trust trust);
+ public Identity setTrust(OwnIdentity ownIdentity, Trust trust);
/**
* Removes trust assignment from the given own identity for this identity.
* The own identity that removed the trust assignment for this
* identity
*/
- public void removeTrust(OwnIdentity ownIdentity);
+ public Identity removeTrust(OwnIdentity ownIdentity);
}
*/
public String getInsertUri();
+ public OwnIdentity addContext(String context);
+ public OwnIdentity removeContext(String context);
+ public OwnIdentity setProperty(String name, String value);
+ public OwnIdentity removeProperty(String name);
+
}