Fixed imports and javadoc
This commit is contained in:
parent
0735d06c0d
commit
b3130ac3eb
|
@ -23,49 +23,31 @@ public class SchemaFacetImpl extends FacetImpl implements SchemaFacet {
|
|||
protected String description;
|
||||
protected ValueSchema schema;
|
||||
|
||||
/**
|
||||
* @return the name
|
||||
*/
|
||||
@Override
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param name the name to set
|
||||
*/
|
||||
@Override
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the description
|
||||
*/
|
||||
@Override
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param description the description to set
|
||||
*/
|
||||
@Override
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the schemaURL
|
||||
*/
|
||||
@Override
|
||||
public ValueSchema getSchema() {
|
||||
return schema;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param schemaURL the schemaURL to set
|
||||
*/
|
||||
@Override
|
||||
public void setSchema(ValueSchema schema) {
|
||||
this.schema = schema;
|
||||
|
|
|
@ -10,6 +10,7 @@ import org.gcube.informationsystem.types.reference.Change;
|
|||
import org.gcube.informationsystem.types.reference.TypeMetadata;
|
||||
import org.gcube.informationsystem.utils.TypeVersion;
|
||||
import org.gcube.resourcemanagement.model.impl.entities.resources.PluginImpl;
|
||||
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.DependsOn;
|
||||
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.IsPluginOf;
|
||||
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@ import org.gcube.resourcemanagement.model.impl.entities.resources.ServiceImpl;
|
|||
import org.gcube.resourcemanagement.model.reference.entities.facets.CapabilityFacet;
|
||||
import org.gcube.resourcemanagement.model.reference.entities.facets.DescriptiveMetadataFacet;
|
||||
import org.gcube.resourcemanagement.model.reference.entities.facets.SubjectFacet;
|
||||
import org.gcube.resourcemanagement.model.reference.relations.consistsof.IsIdentifiedBy;
|
||||
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.Activates;
|
||||
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.CallsFor;
|
||||
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.Enables;
|
||||
|
|
Loading…
Reference in New Issue