Skip to content
Snippets Groups Projects

Draft: Resolve "Zenodo Sandbox integration for PID (e.g. DOI)"

34 files
+ 570
56619
Compare changes
  • Side-by-side
  • Inline

Files

package at.tuwien.api.zenodo.deposit;
public enum AccessTypeDto {
OPEN("open"),
EMBARGOED("embargoed"),
RESTRICTED("restricted"),
CLOSED("closed");
private final String type;
AccessTypeDto(final String type) {
this.type = type;
}
@Override
public String toString() {
return type;
}
}
Loading