This commit is contained in:
Fabio Sinibaldi 2020-11-11 18:19:14 +01:00
parent 0ef1d7b0af
commit d01d5b598b
7 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package org.gcube.application.geoportal.common.model.profile;
public class DefaultCompiler {
}

View File

@ -0,0 +1,5 @@
package org.gcube.application.geoportal.common.model.profile;
public class Field {
}

View File

@ -0,0 +1,5 @@
package org.gcube.application.geoportal.common.model.profile;
public class FieldMapping {
}

View File

@ -0,0 +1,5 @@
package org.gcube.application.geoportal.common.model.profile;
public class IndexDefinition {
}

View File

@ -0,0 +1,5 @@
package org.gcube.application.geoportal.common.model.profile;
public class IsoMapper {
}

View File

@ -0,0 +1,17 @@
package org.gcube.application.geoportal.common.model.profile;
import java.util.List;
public class Profile {
private String name;
private String id;
private List<Field> fields;
private List<DefaultCompiler> defaultCompilers;
private List<Validator> validators;
private IsoMapper isoMapper;
private List<FieldMapping> centroidsMapping;
private List<IndexDefinition> indexes;
}

View File

@ -0,0 +1,5 @@
package org.gcube.application.geoportal.common.model.profile;
public class Validator {
}