package at.gv.egovernment.moa.spss.api.impl;

import at.gv.egovernment.moa.spss.api.common.ContentReference;

/**
 * Default implementation of <code>ContentReference</code>.
 * 
 * @author Patrick Peck
 * @version $Id$
 */
public class ContentReferenceImpl
  extends ContentImpl
  implements ContentReference {

  /**
   * Gets the type of content.
   * 
   * @return REFERENCE_CONTENT
   */
  public int getContentType() {
    return REFERENCE_CONTENT;
  }

}