Fixing javadoc warning

This commit is contained in:
Luca Frosini 2019-12-05 17:18:55 +01:00
parent 72eadd2cb5
commit 70eff4b324
8 changed files with 14 additions and 36 deletions

View File

@ -25,7 +25,7 @@ public class LicenseFacetImpl extends FacetImpl implements LicenseFacet {
protected URL textURL;
/**
* @return the value
* @return the name
*/
@Override
public String getName() {
@ -33,7 +33,7 @@ public class LicenseFacetImpl extends FacetImpl implements LicenseFacet {
}
/**
* @param value the value to set
* @param name the name to set
*/
public void setName(String name) {
this.name = name;

View File

@ -31,7 +31,7 @@ public class SimplePropertyFacetImpl extends FacetImpl implements SimpleProperty
}
/**
* @param value the value to set
* @param name the name to set
*/
@Override
public void setName(String name) {

View File

@ -23,11 +23,6 @@ public class HasManagerImpl<Out extends Resource, In extends ContactFacet>
super();
}
/**
* @param source
* @param target
* @param relationProperty
*/
public HasManagerImpl(Out source, In target,
PropagationConstraint propagationConstraint) {
super(source, target, propagationConstraint);

View File

@ -3,28 +3,30 @@ package org.gcube.resourcemanagement.model.impl.relations.consistsof;
import org.gcube.informationsystem.model.reference.properties.PropagationConstraint;
import org.gcube.resourcemanagement.model.reference.entities.facets.ActionFacet;
import org.gcube.resourcemanagement.model.reference.entities.resources.Service;
import org.gcube.resourcemanagement.model.reference.relations.consistsof.HasAddAction;
import org.gcube.resourcemanagement.model.reference.relations.consistsof.HasRemoveAction;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* An implementation of the {@link HasRemoveAction} relation.
*
* @author Manuele Simi (ISTI CNR)
*
*
*/
public class HasRemoveActionImpl<Out extends Service, In extends ActionFacet>
extends HasActionImpl<Out, In> implements HasAddAction<Out, In>{
@JsonTypeName(value = HasRemoveAction.NAME)
public class HasRemoveActionImpl<Out extends Service, In extends ActionFacet> extends HasActionImpl<Out,In>
implements HasRemoveAction<Out,In> {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = 5038048537520695788L;
protected HasRemoveActionImpl() {
super();
}
public HasRemoveActionImpl(Out source, In target,
PropagationConstraint propagationConstraint) {
public HasRemoveActionImpl(Out source, In target, PropagationConstraint propagationConstraint) {
super(source, target, propagationConstraint);
}
}

View File

@ -27,11 +27,6 @@ public class IsCompliantWithImpl<Out extends Dataset, In extends Schema>
super();
}
/**
* @param source
* @param target
* @param relationProperty
*/
public IsCompliantWithImpl(Out source, In target,
PropagationConstraint propagationConstraint) {
super(source, target, propagationConstraint);

View File

@ -27,11 +27,6 @@ public class IsConfiguredByImpl<Out extends Software, In extends ConfigurationTe
super();
}
/**
* @param source
* @param target
* @param relationProperty
*/
public IsConfiguredByImpl(Out source, In target,
PropagationConstraint propagationConstraint) {
super(source, target, propagationConstraint);

View File

@ -23,11 +23,6 @@ public class IsCorrelatedToImpl<Out extends Dataset, In extends Dataset>
super();
}
/**
* @param source
* @param target
* @param relationProperty
*/
public IsCorrelatedToImpl(Out source, In target,
PropagationConstraint propagationConstraint) {
super(source, target, propagationConstraint);

View File

@ -28,15 +28,11 @@ public interface ActionFacet extends Facet, NameProperty {
/**
* Type of action.
* @return an instance of {@link TYPE}
* @return an instance of {@link EnumStringProperty}
*/
@ISProperty(name=TYPE_PROPERTY, mandatory=true, nullable=false)
public EnumStringProperty getType();
/**
*
* @param type
*/
public void setType(EnumStringProperty type);
/**