001/*
002 * Licensed to DuraSpace under one or more contributor license agreements.
003 * See the NOTICE file distributed with this work for additional information
004 * regarding copyright ownership.
005 *
006 * DuraSpace licenses this file to you under the Apache License,
007 * Version 2.0 (the "License"); you may not use this file except in
008 * compliance with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.fcrepo.client;
019
020/**
021 * Link header values used in the Fedora specification.
022 *
023 * @author bbpennel
024 */
025public class LinkHeaderConstants {
026
027    // handling parameter for external content Links
028    public static final String EXTERNAL_CONTENT_HANDLING = "handling";
029
030    // rel value for external content URI for binaries
031    public static final String EXTERNAL_CONTENT_REL = "http://fedora.info/definitions/fcrepo#ExternalContent";
032
033    // rel for identifying the ldpcv for a ldprv
034    public static final String MEMENTO_TIME_MAP_REL = "timemap";
035
036    // rel for identifying the timegate of an ldprv
037    public static final String MEMENTO_TIME_GATE_REL = "timegate";
038
039    // rel for identifying an ldprv
040    public static final String MEMENTO_ORIGINAL_REL = "original";
041
042    // rel for link header representing the type or interaction model of the object
043    public static final String TYPE_REL = "type";
044
045    // rel identifying the RDF resource describing this resource
046    public static final String DESCRIBEDBY_REL = "describedby";
047
048    // rel identifying the NonRDFSource described by this resource
049    public static final String DESCRIBES_REL = "describes";
050
051    // rel identifying the ACL for the resource
052    public static final String ACL_REL = "acl";
053
054    private LinkHeaderConstants() {
055    }
056}