Package org.fcrepo.common.rdf

Examples of org.fcrepo.common.rdf.RDFName


        /*
         * fType is eliminated in foxml 1.1+, so choose the best reasonable
         * value for 1.0 serializations
         */
        if (m_format.equals(FOXML1_0)) {
            RDFName ftype = DOTranslationUtility.getTypeAttribute(obj);
            if (ftype != null) {
                appendProperty(RDF.TYPE.uri, ftype.uri, writer, false);
            }
        }

View Full Code Here


            }
        }
    }

    private static RDFName getSystemURI(String identity) {
        return new RDFName(Constants.FEDORA, "fedora-system:" + identity);
    }
View Full Code Here

TOP

Related Classes of org.fcrepo.common.rdf.RDFName

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.