View Javadoc

1   package org.openprovenance.model.collections;
2   
3   public interface CollectionURIs {
4       String CONTAINED       = "http://openprovenance.org/collections#contained";
5       String WASPARTOF       = "http://openprovenance.org/collections#wasPartOf";
6       String WASIDENTICALTO  = "http://openprovenance.org/collections#wasIdenticalTo";
7       String WASCOPYOF       = "http://openprovenance.org/collections#wasCopyOf";
8       String WASMAPPEDFROM   = "http://openprovenance.org/collections#wasMappedFrom";
9   
10      String CONSTRUCTOR     = "http://openprovenance.org/collections#constructor";
11      String ACCESSOR        = "http://openprovenance.org/collections#accessor";
12  }
13