geoportal-data-common/src/main/java/org/gcube/application/geoportalcommon/shared/geoportal/GEOPORTAL_CONFIGURATION_TYP...

36 lines
525 B
Java

package org.gcube.application.geoportalcommon.shared.geoportal;
public enum GEOPORTAL_CONFIGURATION_TYPE {
item_fields("itemFields"), gcube_profiles("gcubeProfiles");
String id;
/**
* Instantiates a new gna config managed.
*
* @param id the id
*/
GEOPORTAL_CONFIGURATION_TYPE(String id) {
this.id = id;
}
/**
* Gets the id.
*
* @return the id
*/
public String getId() {
return id;
}
/**
* To string.
*
* @return the string
*/
@Override
public String toString() {
return id;
}
}