com.activitystream.EntityType Maven / Gradle / Ivy
package com.activitystream;
public class EntityType {
private String type;
public EntityType(String type) {
this.type = type;
}
public String toJson() {
return type;
}
public EntityType extend(String type) {
return new EntityType(this.type + ":" + type);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy