it.tidalwave.semantic.vocabulary.DublinCoreVocabulary Maven / Gradle / Ivy
/***********************************************************************************************************************
*
* blueBill Core - open source birding
* Copyright (C) 2009-2011 by Tidalwave s.a.s. (http://www.tidalwave.it)
*
***********************************************************************************************************************
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
***********************************************************************************************************************
*
* WWW: http://bluebill.tidalwave.it
* SCM: https://kenai.com/hg/bluebill~core-src
*
**********************************************************************************************************************/
package it.tidalwave.semantic.vocabulary;
import it.tidalwave.semantic.EntityWithProperties;
import it.tidalwave.util.Id;
import it.tidalwave.util.Key;
/***********************************************************************************************************************
*
* @author Fabrizio Giudici
* @version $Id$
*
**********************************************************************************************************************/
public final class DublinCoreVocabulary
{
private DublinCoreVocabulary()
{
}
public static final String NS_DC = "http://purl.org/dc/elements/1.1/";
public static final String NS_DC_TERMS = "http://purl.org/dc/terms/";
public static final Id ID_DC_ABSTRACT = new Id(NS_DC + "abstract");
public static final Id ID_DC_CREATOR = new Id(NS_DC + "creator");
public static final Id ID_DC_PUBLISHER = new Id(NS_DC + "publisher");
public static final Id ID_DC_TITLE = new Id(NS_DC + "title");
public static final Id ID_DC_RIGHTS = new Id(NS_DC + "rights");
public static final Id ID_DC_TYPE = new Id(NS_DC + "type");
public static final Id ID_DC_FORMAT = new Id(NS_DC + "format");
public static final Id ID_DC_IDENTIFIER = new Id(NS_DC + "identifier");
public static final Id ID_DC_DESCRIPTION = new Id(NS_DC + "description");
public static final Key DC_ABSTRACT = new Key(ID_DC_ABSTRACT);
public static final Key> DC_CREATOR = new Key>(ID_DC_CREATOR);
public static final Key> DC_PUBLISHER = new Key>(ID_DC_PUBLISHER);
public static final Key DC_TITLE = new Key(ID_DC_TITLE);
public static final Key DC_RIGHTS = new Key(ID_DC_RIGHTS);
public static final Key DC_TYPE = new Key(ID_DC_TYPE);
public static final Key DC_FORMAT = new Key(ID_DC_FORMAT);
public static final Key DC_IDENTIFIER = new Key(ID_DC_IDENTIFIER);
public static final Key DC_DESCRIPTION = new Key(ID_DC_DESCRIPTION);
}