Package org.fcrepo.oai

Examples of org.fcrepo.oai.SimpleMetadataFormat


        throw new BadResumptionTokenException("Sample doesn't support resumptionTokens.");
    }

    public Set getMetadataFormats(String id) {
        HashSet<SimpleMetadataFormat> s = new HashSet<SimpleMetadataFormat>();
        s.add(new SimpleMetadataFormat(OAI_DC.prefix,
                                       OAI_DC2_0.xsdLocation,
                                       OAI_DC.uri));
        return s;
    }
View Full Code Here


            }
            buf.append("      </friends>");
            m_descriptions.add(buf.toString());
        }
        m_formats = new HashSet<SimpleMetadataFormat>();
        m_formats.add(new SimpleMetadataFormat("oai_dc",
                                               OAI_DC2_0.xsdLocation,
                                               OAI_DC.uri));
        m_setInfos = new ArrayList<SimpleSetInfo>();
    }
View Full Code Here

TOP

Related Classes of org.fcrepo.oai.SimpleMetadataFormat

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.