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

poussecafe.doc.model.entitydoc.EntityDocId Maven / Gradle / Ivy

The newest version!
package poussecafe.doc.model.entitydoc;

import poussecafe.domain.ValueObject;
import poussecafe.util.StringId;

/**
 * @trivial
 */
public class EntityDocId extends StringId implements ValueObject {

    public static EntityDocId ofClassName(String className) {
        return new EntityDocId(className);
    }

    private EntityDocId(String className) {
        super(className);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy