package com.tandbergtv.metadatamanager.model;

/**
 * Asset visitor interface used for un-marshalling the hybernate proxy
 * 
 * @author spuranik
 * 
 */
public interface IAssetVisitor {

	/**
	 * unMarshals the given asset.
	 * 
	 * @param a
	 * @return
	 */
	void unWrap(Asset a);
}
