All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.activitystream.EntityType Maven / Gradle / Ivy

Go to download

For a description please see https://github.com/activitystream/as-sdk-java

There is a newer version: 0.5.8
Show newest version
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