root/head/plosone/libs/otm-models/src/main/java/org/plos/models/PLoS.java @ 3172

Revision 3172, 0.7 KB (checked in by amit, 3 years ago)

There are a few related changes here:

  • Added new predicate to DublinCore? for general use and for citation
  • Modified the Citation class to use the bibtex model
  • Added License class to setup base for using different licenses
  • Modified Article to correspond to new Dublin Core and Citation.

Reference is not needed. This has been tested on black.topazproject.org with
both new data (on black itself) and old data (merlin).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id HeadURL Revision
Line 
1/* $HeadURL::                                                                            $
2 * $Id$
3 *
4 * Copyright (c) 2007 by Topaz, Inc.
5 * http://topazproject.org
6 *
7 * Licensed under the Educational Community License version 1.0
8 * http://opensource.org/licenses/ecl1.php
9 */
10package org.plos.models;
11
12/**
13 * Definitions of some standard uris.
14 *
15 * @author Amit Kapoor
16 */
17public interface PLoS {
18  /** PLoS namespace */
19  public static final String plos               = "http://rdf.plos.org/RDF/";
20  /** Creative Commons namespace */
21  public static final String creativeCommons    = "http://web.resource.org/cc/";
22  /** Bibtex namespace */
23  public static final String bibtex             = "http://purl.org/net/nknouf/ns/bibtex#";
24}
Note: See TracBrowser for help on using the browser.