information-system-model/src/main/java/org/gcube/informationsystem/context/impl/relations/IsParentOfImpl.java

33 lines
776 B
Java

/**
*
*/
package org.gcube.informationsystem.context.impl.relations;
import org.gcube.informationsystem.base.impl.relations.BaseRelationImpl;
import org.gcube.informationsystem.context.reference.entities.Context;
import org.gcube.informationsystem.context.reference.relations.IsParentOf;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* @author Luca Frosini (ISTI - CNR)
*/
@JsonTypeName(value=IsParentOf.NAME)
public class IsParentOfImpl<Out extends Context, In extends Context> extends
BaseRelationImpl<Out, In> implements IsParentOf<Out, In> {
/**
*
*/
private static final long serialVersionUID = 246200525751824393L;
protected IsParentOfImpl(){
super();
}
public IsParentOfImpl(Out source, In target) {
super(source, target);
}
}