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

no.unit.nva.model.associatedartifacts.RightsRetentionStrategyConfiguration Maven / Gradle / Ivy

There is a newer version: 0.23.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy