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

poussecafe.doc.model.relation.RelationId Maven / Gradle / Ivy

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

import java.util.Objects;
import poussecafe.domain.ValueObject;

public class RelationId implements ValueObject {

    public RelationId(String fromClass, String toClass) {
        Objects.requireNonNull(fromClass);
        this.fromClass = fromClass;

        Objects.requireNonNull(toClass);
        this.toClass = toClass;
    }

    private String fromClass;

    public String fromClass() {
        return fromClass;
    }

    private String toClass;

    public String toClass() {
        return toClass;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy