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

com.activitystream.EntityRelationType 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;

/**
 * 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