Constant Field Values

Contents

edu.cornell.*

  • edu.cornell.mannlib.vedit.util.FormUtils 
    Modifier and Type Constant Field Value
    protected static final int BASE_10 10
  • edu.cornell.mannlib.vitro.webapp.auth.permissions.PermissionSets 
    Modifier and Type Constant Field Value
    public static final String URI_CURATOR "http://vitro.mannlib.cornell.edu/ns/vitro/authorization#CURATOR"
    public static final String URI_DBA "http://vitro.mannlib.cornell.edu/ns/vitro/authorization#ADMIN"
    public static final String URI_EDITOR "http://vitro.mannlib.cornell.edu/ns/vitro/authorization#EDITOR"
    public static final String URI_SELF_EDITOR "http://vitro.mannlib.cornell.edu/ns/vitro/authorization#SELF_EDITOR"
  • edu.cornell.mannlib.vitro.webapp.auth.policy.specialrelationships.RelationshipChecker 
    Modifier and Type Constant Field Value
    protected static final String NS_CORE "http://vivoweb.org/ontology/core#"
    protected static final String NS_OBO "http://purl.obolibrary.org/obo/"
    protected static final String URI_INHERES_IN "http://purl.obolibrary.org/obo/RO_0000052"
    protected static final String URI_REALIZES "http://purl.obolibrary.org/obo/BFO_0000055"
    protected static final String URI_RELATED_BY "http://vivoweb.org/ontology/core#relatedBy"
    protected static final String URI_RELATES "http://vivoweb.org/ontology/core#relates"
  • edu.cornell.mannlib.vitro.webapp.controller.json.JsonServlet 
    Modifier and Type Constant Field Value
    public static final int REPLY_SIZE 256
  • edu.cornell.mannlib.vitro.webapp.dao.jena.DataPropertyDaoJena 
    Modifier and Type Constant Field Value
    protected static final String LIST_VIEW_CONFIG_FILE_QUERY_STRING "PREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#>SELECT ?property ?filename WHERE { \n ?property display:listViewConfigFile ?filename . \n}"
  • edu.cornell.mannlib.vitro.webapp.dao.jena.DataPropertyStatementDaoJena 
    Modifier and Type Constant Field Value
    protected static final String DATA_PROPERTY_VALUE_QUERY_STRING "SELECT ?value WHERE { \n ?subject ?property ?value . \n FILTER ( isLiteral(?value) ) } ORDER BY ?value"
  • edu.cornell.mannlib.vitro.webapp.dao.jena.DisplayModelDaoJena 
    Modifier and Type Constant Field Value
    protected static final String MENU_N3_FILE "/WEB-INF/ontologies/app/menu.n3"
    protected static final String MENU_N3_FILE_BACKUP "/WEB-INF/ontologies/app/menu.backup"
  • edu.cornell.mannlib.vitro.webapp.dao.jena.JenaBaseDao 
    Modifier and Type Constant Field Value
    public static final boolean KEEP_ONLY_IF_FALSE false
    public static final boolean KEEP_ONLY_IF_TRUE true
  • edu.cornell.mannlib.vitro.webapp.dao.jena.JenaModelUtils 
    Modifier and Type Constant Field Value
    public static final String BNODE_ROOT_QUERY "SELECT DISTINCT ?s WHERE { ?s ?p ?o OPTIONAL { ?ss ?pp ?s } FILTER (!isBlank(?s) || !bound(?ss)) }"
  • edu.cornell.mannlib.vitro.webapp.dao.jena.MenuDaoJena 
    Modifier and Type Constant Field Value
    protected static final String menuQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?menuItem ?linkText ?urlMapping WHERE {\n ?menu rdf:type display:MainMenu .\n ?menu display:hasElement ?menuItem . \n ?menuItem display:linkText ?linkText .\n OPTIONAL { ?menuItem display:menuPosition ?menuPosition }.\n OPTIONAL { ?menuItem display:toPage ?page . }\n OPTIONAL { ?page display:urlMapping ?urlMapping . }\n} \nORDER BY ?menuPosition ?menuItemText \n"
  • edu.cornell.mannlib.vitro.webapp.dao.jena.ObjectPropertyDaoJena 
    Modifier and Type Constant Field Value
    protected static final String LIST_VIEW_CONFIG_FILE_QUERY_STRING "PREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \nPREFIX config: <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration#> \nSELECT ?property ?range ?domain ?filename WHERE { \n { ?property display:listViewConfigFile ?filename \n } UNION { \n ?configuration config:listViewConfigFile ?filename . \n ?context config:hasConfiguration ?configuration . \n ?context config:configContextFor ?property . \n ?context config:qualifiedBy ?range . \n OPTIONAL { ?context config:qualifiedByDomain ?domain } \n } \n}"
  • edu.cornell.mannlib.vitro.webapp.dao.jena.ObjectPropertyStatementDaoJena 
    Modifier and Type Constant Field Value
    protected static final String MOST_SPECIFIC_TYPE_QUERY "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> \nSELECT DISTINCT ?label ?type WHERE { \n ?subject vitro:mostSpecificType ?type . \n ?type rdfs:label ?label . \n ?type vitro:inClassGroup ?classGroup . \n ?classGroup a ?ClassGroup \n} ORDER BY ?label "
  • edu.cornell.mannlib.vitro.webapp.dao.jena.PageDaoJena 
    Modifier and Type Constant Field Value
    protected static final String classGroupPageQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?classGroup WHERE {\n ?pageUri display:hasDataGetter ?dg .\n ?dg <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#forClassGroup> ?classGroup . \n} \n"
    protected static final String dataGetterURIsQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?dg WHERE {\n ?pageUri display:hasDataGetter ?dg .\n}"
    protected static final String homePageUriQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?pageUri WHERE {\n ?pageUri rdf:type <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#HomePage> .\n} \n"
    protected static final String individualsForClassesDataGetterQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?dg ?class ?restrictClass WHERE {\n ?pageUri display:hasDataGetter ?dg .\n ?dg <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#getIndividualsForClass> ?class . \n OPTIONAL {?dg <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#restrictResultsByClass> ?restrictClass } .\n} \n"
    protected static final String individualsForClassesInternalQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?dg ?class ?isInternal WHERE {\n ?pageUri display:hasDataGetter ?dg .\n ?dg <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#getIndividualsForClass> ?class . \n OPTIONAL { ?dg <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#restrictResultsByInternalClass> ?isInternal } .\n} \n"
    protected static final String individualsForClassesRestrictedQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?restrictClass WHERE {\n ?dg <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#restrictResultsByClass> ?restrictClass .\n} \n"
    protected static final String institutionalInternalClassQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?restrictByInternalClass WHERE {\n ?dg <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#restrictResultsByInternalClass> ?restrictsByInternalClass .\n} \n"
    protected static final String pageDataGetterTypesQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?dataGetterType WHERE {\n ?pageUri display:hasDataGetter ?dg .\n \t ?dg rdf:type ?dataGetterType . \n} \n"
    protected static final String pageTypeQueryString "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?type WHERE {\n ?pageUri rdf:type ?type .\n} \n"
    protected static final String requiredActionsQuery "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nPREFIX xsd: <http://www.w3.org/2001/XMLSchema#> \nPREFIX display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> \n\nSELECT ?requiredAction WHERE{\n ?pageUri <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#requiresAction> ?requiredAction .\n}"
  • edu.cornell.mannlib.vitro.webapp.dao.jena.PropertyDaoJena 
    Modifier and Type Constant Field Value
    protected static final String FAUX_PROPERTY_FLAG "FAUX"
  • edu.cornell.mannlib.vitro.webapp.modules.imageProcessor.ImageProcessor 
    Modifier and Type Constant Field Value
    public static final int MINIMUM_CROP_SIZE 5
  • edu.cornell.mannlib.vitro.webapp.searchindex.indexing.AdditionalURIsForObjectProperties 
    Modifier and Type Constant Field Value
    protected static final String prefixs "prefix owl: <http://www.w3.org/2002/07/owl#> \nprefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nprefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> \n"
    protected final String QUERY_FOR_RELATED "prefix owl: <http://www.w3.org/2002/07/owl#> \nprefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> \nprefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> \nSELECT ?related WHERE { \n ?uri ?p ?related \n filter( isURI( ?related ) && ?p != rdf:type ) \n}"
  • edu.cornell.mannlib.vitro.webapp.utils.jena.WorkflowOntology 
    Modifier and Type Constant Field Value
    public static final String NS "http://vitro.mannlib.cornell.edu/ns/vitro/rdfIngestWorkflow#"

edu.ucsf.*

org.linkeddatafragments.*

  • org.linkeddatafragments.util.CommonResources 
    Modifier and Type Constant Field Value
    public static final String HYDRA "http://www.w3.org/ns/hydra/core#"
    public static final String RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    public static final String VOID "http://rdfs.org/ns/void#"