ws-thredds-sync-widget/src/main/java/org/gcube/portlets/widgets/wsthreddssync/shared/GatewayRolesThredds.java

19 lines
322 B
Java
Raw Normal View History

2021-03-03 18:14:53 +01:00
package org.gcube.portlets.widgets.wsthreddssync.shared;
public enum GatewayRolesThredds {
THREDDS_ADMIN("Thredds-Admin"),
THREDDS_PUBLISHER("Thredds-Publisher");
private String name;
private GatewayRolesThredds(String name) {
this.name = name;
}
public String getRoleName() {
return this.name;
}
}