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; } }