![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.clerezza.utils.graphnodeprovider.GraphNodeProvider Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you 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.
*/
package org.apache.clerezza.utils.graphnodeprovider;
import org.apache.clerezza.IRI;
import org.apache.clerezza.utils.GraphNode;
/**
* A service that returns a GraphNode for a specified named resource, the
* returned GraphNode has as BaseGraph the ContentGraph provided by the
* ContentGraphProvider and the for remote uris the Graphs they dereference to
* and for local URIs with a path-section starting with /user/{username}/ the
* local-public-graph of that user.
*/
public interface GraphNodeProvider {
/**
* Get a GraphNode for the specified resource, see class comments for
* details.
*/
GraphNode get(IRI uriRef);
/**
* Get a GraphNode for the specified resource, The resource is assumed to be
* local, i.e. the method behaves like get(IRI) for a Uri with an
* authority section contained in the Set retuned by
* org.apache.clerezza.platform.config.PlatformConfig#getBaseUris()
*/
GraphNode getLocal(IRI uriRef);
/**
* return true iff getLocal(uriRef).getNodeContext.size > 0
*/
boolean existsLocal(IRI uriRef);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy