
com.activitystream.EntityType 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;
/**
* A strongly typed entity discriminator to avoid typos when creating entity
*/
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