
com.activitystream.EntityRelationType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
For a description please see https://github.com/activitystream/as-sdk-java
package com.activitystream;
/**
* The relation _type_ describing the nature of relation between two entities
*/
public class EntityRelationType {
private final String aka;
public EntityRelationType(String aka) {
this.aka = aka;
}
public String value() {
return aka;
}
public EntityRelationType extend(String extenstion) {
return new EntityRelationType(aka + ":" + extenstion);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy