001/*
002 * ModeShape (http://www.modeshape.org)
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 */
016package org.modeshape.sequencer.pdf;
017
018import static org.modeshape.sequencer.pdf.XmpMetadataLexicon.Namespace.PREFIX;
019
020import org.modeshape.common.annotation.Immutable;
021
022
023/**
024 * A lexicon of names in XMP standard namespace.
025 */
026@Immutable
027public class XmpMetadataLexicon {
028
029    public static class Namespace {
030        public static final String URI = "http://www.modeshape.org/xmp/1.0/";
031        public static final String PREFIX = "xmp";
032    }
033
034    public static final String BASE_URL = PREFIX + ":baseURL";
035    public static final String CREATE_DATE = PREFIX + ":createDate";
036    public static final String CREATOR_TOOL = PREFIX + ":creatorTool";
037    public static final String IDENTIFIER = PREFIX + ":identifier";
038    public static final String METADATA_DATE = PREFIX + ":metadataDate";
039    public static final String MODIFY_DATE = PREFIX + ":modifyDate";
040    public static final String NICKNAME = PREFIX + ":nickname";
041    public static final String RATING = PREFIX + ":rating";
042    public static final String LABEL = PREFIX + ":label";
043}