package at.gv.egovernment.moa.spss.api.impl; import at.gv.egovernment.moa.spss.api.common.Content; /** * Default base class for Content implementations. * * @author Patrick Peck * @version $Id$ */ public abstract class ContentImpl implements Content { /** The reference pointing to the content data. */ private String reference; /** * Sets the reference pointing to the content data. * * @param referenceURI The URI of the content data. */ public void setReference(String referenceURI) { this.reference = referenceURI; } public String getReference() { return reference; } }