Package org.apache.lenya.cms.metadata.dublincore

Examples of org.apache.lenya.cms.metadata.dublincore.DublinCoreImpl


     * @return the dublin core meta-data
     * @throws DocumentException if the meta-data could not be retrieved
     */
    public DublinCoreImpl getDublinCoreMetaData() throws DocumentException {
        if (dublinCoreMetaData == null) {
            dublinCoreMetaData = new DublinCoreImpl(this.sourceUri, this.serviceManager, getLogger());
        }
        return dublinCoreMetaData;
    }
View Full Code Here


     * Set the dublin-core meta-data managed by this instance.
     * @param dcMetaDataValues the dublin-core meta-data
     * @throws DocumentException if the meta-data could not be written
     */
    public void setDublinCoreMetaData(Map dcMetaDataValues) throws DocumentException {
        dublinCoreMetaData = new DublinCoreImpl(this.sourceUri, this.serviceManager, getLogger());
        setMetaData(dublinCoreMetaData, dcMetaDataValues);
    }
View Full Code Here

TOP

Related Classes of org.apache.lenya.cms.metadata.dublincore.DublinCoreImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.