001/* 002 * The contents of this file are subject to the license and copyright 003 * detailed in the LICENSE and NOTICE files at the root of the source 004 * tree. 005 */ 006package org.fcrepo.kernel.api; 007 008/** 009 * Convenience class with constants for commonly used Fedora types. 010 * 011 * @author ajs6f 012 * @since Apr 25, 2013 013 */ 014public interface FedoraTypes { 015 016 String FEDORA_ID_PREFIX = "info:fedora"; 017 018 String FCR_ACL = "fcr:acl"; 019 020 String FCR_METADATA = "fcr:metadata"; 021 022 String FCR_VERSIONS = "fcr:versions"; 023 024 String FCR_FIXITY = "fcr:fixity"; 025 026 String FCR_TOMBSTONE = "fcr:tombstone"; 027 028 String FCR_TX = "fcr:tx"; 029}