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