You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ws-thredds-sync-widget/src/main/java/org/gcube/portlets/widgets/wsthreddssync/shared/GatewayRolesThredds.java

19 lines
308 B
Java

package org.gcube.portlets.widgets.wsthreddssync.shared;
public enum GatewayRolesThredds {
DATA_MANAGER("Data-Manager"),
DATA_EDITOR("Data-Editor");
private String name;
private GatewayRolesThredds(String name) {
this.name = name;
}
public String getRoleName() {
return this.name;
}
}