package at.gv.egovernment.moa.spss.api.impl; import at.gv.egovernment.moa.spss.api.common.ContentReference; /** * Default implementation of ContentReference. * * @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; } }