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

poussecafe.doc.model.boundedcontextdoc.BoundedContextDocId Maven / Gradle / Ivy

There is a newer version: 0.29.0
Show newest version
package poussecafe.doc.model.boundedcontextdoc;

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

public class BoundedContextDocId extends StringId implements ValueObject {

    public static BoundedContextDocId ofPackageName(String packageName) {
        return new BoundedContextDocId(packageName);
    }

    public BoundedContextDocId(String value) {
        super(value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy