package at.gv.egovernment.moa.spss.api.impl; import at.gv.egovernment.moa.spss.api.cmsverify.CMSContentReference; /** * Default implementation of CMSContentReference. * * @author Fatemeh Philippi * @version $Id$ */ public class CMSContentReferenceImpl implements CMSContentReference { /** The reference pointing to the actual data. */ private String reference; /** * Sets the reference URI. * * @param referenceURI The URI pointing to the content data. */ public void setReference(String referenceURI) { this.reference = referenceURI; } public String getReference() { return reference; } /** * Gets the content type. * * @return REFERENCE_CONTENT */ public int getContentType() { return REFERENCE_CONTENT; } }