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; protected URL textURL;
/** /**
* @return the value * @return the name
*/ */
@Override @Override
public String getName() { 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) { public void setName(String name) {
this.name = 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 @Override
public void setName(String name) { public void setName(String name) {

View File

@ -23,11 +23,6 @@ public class HasManagerImpl<Out extends Resource, In extends ContactFacet>
super(); super();
} }
/**
* @param source
* @param target
* @param relationProperty
*/
public HasManagerImpl(Out source, In target, public HasManagerImpl(Out source, In target,
PropagationConstraint propagationConstraint) { PropagationConstraint propagationConstraint) {
super(source, target, 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.informationsystem.model.reference.properties.PropagationConstraint;
import org.gcube.resourcemanagement.model.reference.entities.facets.ActionFacet; import org.gcube.resourcemanagement.model.reference.entities.facets.ActionFacet;
import org.gcube.resourcemanagement.model.reference.entities.resources.Service; 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. * An implementation of the {@link HasRemoveAction} relation.
* *
* @author Manuele Simi (ISTI CNR) * @author Manuele Simi (ISTI CNR)
* *
*/ */
public class HasRemoveActionImpl<Out extends Service, In extends ActionFacet> @JsonTypeName(value = HasRemoveAction.NAME)
extends HasActionImpl<Out, In> implements HasAddAction<Out, In>{ public class HasRemoveActionImpl<Out extends Service, In extends ActionFacet> extends HasActionImpl<Out,In>
implements HasRemoveAction<Out,In> {
/** /**
* Generated Serial Version UID * Generated Serial Version UID
*/ */
private static final long serialVersionUID = 5038048537520695788L; private static final long serialVersionUID = 5038048537520695788L;
protected HasRemoveActionImpl() { protected HasRemoveActionImpl() {
super(); super();
} }
public HasRemoveActionImpl(Out source, In target, public HasRemoveActionImpl(Out source, In target, PropagationConstraint propagationConstraint) {
PropagationConstraint propagationConstraint) {
super(source, target, propagationConstraint); super(source, target, propagationConstraint);
} }
} }

View File

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

View File

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

View File

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

View File

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