This repository has been archived on 2021-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
geoportal-common/src/main/java/org/gcube/application/geoportal/common/model/profile/IndexDefinition.java

16 lines
338 B
Java
Raw Normal View History

2020-11-11 18:19:14 +01:00
package org.gcube.application.geoportal.common.model.profile;
2020-11-12 18:02:51 +01:00
import javax.json.JsonObject;
2020-11-11 18:19:14 +01:00
2020-11-12 18:02:51 +01:00
import org.gcube.application.geoportal.common.model.BasicJSONObject;
public class IndexDefinition extends BasicJSONObject {
public IndexDefinition(JsonObject theObject) {
super(theObject);
// TODO Auto-generated constructor stub
}
2020-11-11 18:19:14 +01:00
}