/**
 * This class represents the Parent Child Relationship, where
 * Parent is the owner of the Child
 */
package com.tandbergtv.metadatamanager.model;


/**
 * @author aseth
 *
 */
public class ParentChildRelation extends Relation {

	/**
	 * 
	 */
	public ParentChildRelation() {
		super();
	}

	/**
	 * @param ownerAsset
	 * @param targetAsset
	 */
	public ParentChildRelation(Asset ownerAsset, Asset targetAsset) {
		super(ownerAsset, targetAsset);
	}

	
	public ParentChildRelation(Asset ownerAsset, Asset targetAsset,
			NextRevision nextRevision) {
		super(ownerAsset, targetAsset, nextRevision);
	}

	/* (non-Javadoc)
	 * @see com.tandbergtv.metadatamanager.model.Relation#isValidRelation()
	 */
	@Override
	public boolean isValid() {
		// TODO Auto-generated method stub
		return true;
	}

}
