no.unit.nva.model.associatedartifacts.RightsRetentionStrategyConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nva-datamodel-java Show documentation
Show all versions of nva-datamodel-java Show documentation
The java version of the NVA datamodel
package no.unit.nva.model.associatedartifacts;
import com.fasterxml.jackson.annotation.JsonValue;
public enum RightsRetentionStrategyConfiguration {
UNKNOWN("Unknown"),
NULL_RIGHTS_RETENTION_STRATEGY("NullRightsRetentionStrategy"),
RIGHTS_RETENTION_STRATEGY("RightsRetentionStrategy"),
OVERRIDABLE_RIGHTS_RETENTION_STRATEGY("OverridableRightsRetentionStrategy");
private final String value;
RightsRetentionStrategyConfiguration(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}