com.activitystream.EntityRelationType Maven / Gradle / Ivy
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 toJson() {
return aka;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy