001/*
002 * (C) Copyright 2018 Nuxeo (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Nuno Cunha (ncunha@nuxeo.com)
018 *     Quentin Le Henaff (qlehenaff@nuxeo.com)
019 */
020
021package org.nuxeo.ecm.platform.dublincore.constants;
022
023/**
024 * Utility Class that stores DublinCore schema constants.
025 *
026 * @since 10.2
027 */
028public class DublinCoreConstants {
029
030    // This is a utility class.
031    private DublinCoreConstants() {
032    }
033
034    public static final String DUBLINCORE_SCHEMA_NAME = "dublincore";
035
036    public static final String DUBLINCORE_CONTRIBUTORS_PROPERTY = "dc:contributors";
037
038    public static final String DUBLINCORE_CREATED_DATE_PROPERTY = "dc:created";
039
040    public static final String DUBLINCORE_CREATOR_PROPERTY = "dc:creator";
041
042    public static final String DUBLINCORE_ISSUED_DATE_PROPERTY = "dc:issued";
043
044    public static final String DUBLINCORE_LAST_CONTRIBUTOR_PROPERTY = "dc:lastContributor";
045
046    public static final String DUBLINCORE_MODIFIED_DATE_PROPERTY = "dc:modified";
047
048    /** @since 11.1 */
049    public static final String DUBLINCORE_DESCRIPTION_PROPERTY = "dc:description";
050
051    /** @since 11.1 */
052    public static final String DUBLINCORE_COVERAGE_PROPERTY = "dc:coverage";
053
054    /** @since 11.1 */
055    public static final String DUBLINCORE_VALID_PROPERTY = "dc:valid";
056
057    /** @since 11.1 */
058    public static final String DUBLINCORE_RIGHTS_PROPERTY = "dc:rights";
059
060    /** @since 11.1 */
061    public static final String DUBLINCORE_EXPIRED_PROPERTY = "dc:expired";
062
063    /** @since 11.1 */
064    public static final String DUBLINCORE_FORMAT_PROPERTY = "dc:format";
065
066    /** @since 11.1 */
067    public static final String DUBLINCORE_TITLE_PROPERTY = "dc:title";
068
069    /** @since 11.1 */
070    public static final String DUBLINCORE_NATURE_PROPERTY = "dc:nature";
071
072    /** @since 11.1 */
073    public static final String DUBLINCORE_SUBJECTS_PROPERTY = "dc:subjects";
074
075    /** @since 11.1 */
076    public static final String DUBLINCORE_SOURCE_PROPERTY = "dc:source";
077
078    /** @since 11.1 */
079    public static final String DUBLINCORE_PUBLISHER_PROPERTY = "dc:publisher";
080
081}