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 */
019
020package org.nuxeo.ecm.platform.dublincore.constants;
021
022/**
023 * Utility Class that stores DublinCore schema constants.
024 *
025 * @since 10.2
026 */
027public class DublinCoreConstants {
028
029    // This is a utility class.
030    private DublinCoreConstants() {
031    }
032
033    public static final String DUBLINCORE_SCHEMA_NAME = "dublincore";
034
035    public static final String DUBLINCORE_CREATOR_PROPERTY = "dc:creator";
036
037    public static final String DUBLINCORE_ISSUED_DATE_PROPERTY = "dc:issued";
038
039    public static final String DUBLINCORE_MODIFIED_DATE_PROPERTY = "dc:modified";
040
041    public static final String DUBLINCORE_CREATED_DATE_PROPERTY = "dc:created";
042
043    public static final String DUBLINCORE_CONTRIBUTORS_PROPERTY = "dc:contributors";
044
045    public static final String DUBLINCORE_LAST_CONTRIBUTOR_PROPERTY = "dc:lastContributor";
046
047    public static final String DUBLINCORE_CREATOR = "creator";
048
049    public static final String DUBLINCORE_ISSUED_DATE = "issued";
050
051    public static final String DUBLINCORE_MODIFIED_DATE = "modified";
052
053    public static final String DUBLINCORE_CREATED_DATE = "created";
054
055    public static final String DUBLINCORE_CONTRIBUTORS = "contributors";
056
057    public static final String DUBLINCORE_LAST_CONTRIBUTOR = "lastContributor";
058
059}