Uses of Class
org.openanzo.server.repository.rdb.RepositoryConnection

Packages that use RepositoryConnection
org.openanzo.server.repository   
org.openanzo.server.repository.cache   
org.openanzo.server.repository.graph   
org.openanzo.server.repository.indexer   
org.openanzo.server.repository.publisher   
org.openanzo.server.repository.query   
org.openanzo.server.repository.querybuilder   
org.openanzo.server.repository.rdb   
org.openanzo.server.repository.structures   
org.openanzo.server.repository.update   
org.openanzo.server.security   
 

Uses of RepositoryConnection in org.openanzo.server.repository
 

Methods in org.openanzo.server.repository with parameters of type RepositoryConnection
 java.lang.Long ModelServiceApi.authenticate(java.lang.String username, java.lang.String password, RepositoryConnection connection)
          Authenticate the username and password, and return user's ID
 org.openrdf.model.URI ModelServiceApi.getUserId(java.lang.String username, RepositoryConnection connection)
          Get the user's URI in the system
 boolean ModelServiceApi.isSystemUser(java.lang.Long authenticatedUserId, RepositoryConnection repositoryConnection)
          Is the given user a member of the sysAdmin role
 boolean ModelServiceApi.isSystemUser(org.openrdf.model.URI userId, RepositoryConnection repositoryConnection)
          Is the given user a member of the sysAdmin role
 java.lang.Long ModelServiceApi.runAsUser(org.openrdf.model.URI username, java.lang.Long serviceId, RepositoryConnection repositoryConnection)
          Run server operations as a given user.
 void UpdateResultListener.updateComplete(UpdateResults results, RepositoryConnection repositoryConnection)
          Handles the updateComplete event.
 

Constructors in org.openanzo.server.repository with parameters of type RepositoryConnection
ReplicationService(RepositoryConnection repositoryConnection)
          Create a new ReplicationService with given RepositoryConnection
 

Uses of RepositoryConnection in org.openanzo.server.repository.cache
 

Methods in org.openanzo.server.repository.cache with parameters of type RepositoryConnection
 E CachableResourceFactory.getResource(RepositoryConnection repositoryConnection, java.lang.Long id, boolean forceCreate)
          Creates an instance of a CachableResource via Id lookup.
 

Constructors in org.openanzo.server.repository.cache with parameters of type RepositoryConnection
ResourceCache(java.lang.String cacheName, int cacheSize, CachableResourceFactory<E> cachableFactory, RepositoryConnection repositoryConnection)
          Create a new ResourceCache
 

Uses of RepositoryConnection in org.openanzo.server.repository.graph
 

Methods in org.openanzo.server.repository.graph with parameters of type RepositoryConnection
static java.lang.Iterable<Quad> RepositoryDataSet.findQuads(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, boolean includeInferredStatements, java.lang.Long lastTransactionTime, boolean metadataGraphs, boolean defaultGraphs)
          Find quads that match the provided statement pattern
static java.lang.Iterable<Quad> StatementSubGraph.findQuads(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, java.lang.Long namedGraphId, boolean includeInferredStatements, java.lang.Long lastTransactionTime)
          Find the quads that match the provided statement pattern
static java.lang.Iterable<Quad> RepositoryDataSet.findQuads(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, java.lang.Long namedGraphId, boolean includeInferredStatements, java.lang.Long lastTransactionTime, boolean includeStandardData)
          Find the quads that match the provided statement pattern
static java.lang.Iterable<Quad> MetaDataRepositoryGraph.findQuads(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, java.lang.Long namedGraphId, boolean includeInferredStatements, java.lang.Long lastTransactionTime, boolean defaultGraphs)
          Find the set of quads that match the statement pattern
static java.lang.Iterable<Quad> SystemGraph.findQuads(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, java.lang.Long namedGraphId, boolean includeInferredStatements, java.lang.Long lastTransactionTime, boolean defaultGraphs, boolean includeStandardData)
          Find the quads that match the provided statement pattern
static java.lang.Iterable<Quad> RepositoryDataSet.findQuads(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, org.openrdf.model.Resource namedGraphUri, boolean includeInferredStatements, java.lang.Long lastTransactionTime, boolean includeStandardData)
          Find the quads that match the provided statement pattern
static java.lang.Iterable<Quad> StatementSubGraph.findQuadsNoAuth(RepositoryConnection repositoryConnection, boolean includeInferredStatements, org.openrdf.model.Statement statement, java.lang.Long lastTransactionTime)
          Find the quads that match the provided statement pattern
 

Uses of RepositoryConnection in org.openanzo.server.repository.indexer
 

Methods in org.openanzo.server.repository.indexer with parameters of type RepositoryConnection
 void IndexQueryApi.rebuild(RepositoryConnection connection)
          Rebuilds the index based on what is currently in the store.
 void IndexQueryApi.updateComplete(UpdateResults results, RepositoryConnection repositoryConnection)
           
 

Uses of RepositoryConnection in org.openanzo.server.repository.publisher
 

Methods in org.openanzo.server.repository.publisher with parameters of type RepositoryConnection
 void EventPublisher.updateComplete(UpdateResults results, RepositoryConnection repositoryConnection)
           
 

Uses of RepositoryConnection in org.openanzo.server.repository.query
 

Methods in org.openanzo.server.repository.query that return RepositoryConnection
 RepositoryConnection ServerSolutionGenerator.getConnection()
           
 

Methods in org.openanzo.server.repository.query with parameters of type RepositoryConnection
 void ServerSolutionGeneratorFactory.setRepositoryConnection(RepositoryConnection connection)
          Set the connection to the database
 

Constructors in org.openanzo.server.repository.query with parameters of type RepositoryConnection
ServerBGPQuery(RepositoryConnection connection, QueryInformation qi)
          Create a new ServerBGPQuery
ServerSolutionGenerator(RepositoryConnection connection, java.lang.Long transactionTime, IndexerFactoryBase indexQueryApi, boolean includeInferredStatements)
          Create a new ServerSolutionGenerator
 

Uses of RepositoryConnection in org.openanzo.server.repository.querybuilder
 

Methods in org.openanzo.server.repository.querybuilder with parameters of type RepositoryConnection
 java.util.Collection<Quad> SubjectGrounding.findMatches(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, long graphId)
          Merges the provided property mappings and constraints with the statement constraints and builds an SQL query to find the relational database elements meeting the constraints and converts these back RDF statements.
 java.util.Collection<Quad> SubjectGrounding.findMatches(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, java.lang.Long graphId, java.util.Map<java.lang.String,java.lang.Object> variables)
          Merges the provided property mappings and constraints with the statement constraints and builds an SQL query to find the relational database elements meeting the constraints and converts these back RDF statements.
 java.util.Collection<Quad> RdbGraph.findQuads(RepositoryConnection repositoryConnection, org.openrdf.model.Resource subj, org.openrdf.model.URI prop, org.openrdf.model.Value obj, java.lang.Long graphId, boolean includeInferredStatements, java.util.Map<java.lang.String,java.lang.Object> variables)
          Find the quads in this graph that match the statement pattern
 

Uses of RepositoryConnection in org.openanzo.server.repository.rdb
 

Methods in org.openanzo.server.repository.rdb that return RepositoryConnection
 RepositoryConnection RepositoryConnectionPool.acquireRepositoryConnection(int type)
          Get a repositoryConnection from the pool
 

Methods in org.openanzo.server.repository.rdb with parameters of type RepositoryConnection
 void RepositoryConnectionPool.releaseRepositoryConnection(RepositoryConnection connection)
          Release a repositoryConnection from the pool
 

Uses of RepositoryConnection in org.openanzo.server.repository.structures
 

Methods in org.openanzo.server.repository.structures with parameters of type RepositoryConnection
static void Role.addSubRole(RepositoryConnection repositoryConnection, Role parentId, Role childId, java.lang.Long modified)
          Add a child role to a parent role in the database
static ACI ACI.createACI(RepositoryConnection repositoryConnection, java.lang.Long id)
          Creates an AccessControl item, if the id is already in use in the repository then a ModelServiceException is thrown.
static ACL ACL.createAclInstance(RepositoryConnection repositoryConnection, java.lang.Long modified, java.lang.Long aclId, java.lang.Long roleId, boolean template, boolean read, boolean add, boolean remove, boolean changeNamedGraphAcl, boolean insertNamedGraph, boolean removeNamedGraph)
          Create an instance of an ACL
static NamedGraph NamedGraph.createNamedGraph(java.lang.Long id, java.lang.Long metaId, java.lang.Long aclId, java.lang.Long timestamp, java.lang.Long createdBy, long revision, RepositoryConnection repositoryConnection, long lastModifiedBy)
          Create NamedGraph with given properties
static Role Role.createRole(java.lang.Long id, java.lang.Long modified, RepositoryConnection repositoryConnection)
          Creates a new role.
static Statement Statement.createStatement(RepositoryConnection repositoryConnection, org.openrdf.model.Statement statement, java.lang.Long modified, java.lang.Long namedGraphId)
          Create a new Statement for provided data
static TempACL TempACL.createTempACL(RepositoryConnection repositoryConnection, org.openrdf.model.URI aclTemplateURI)
          Create a new Temporary ACL
static User User.createUser(java.lang.Long id, java.lang.Long roleId, java.lang.Long aclId, java.lang.String userId, java.lang.String password, RepositoryConnection repositoryConnection, java.lang.Long modified)
          Creates a new user and adds the user to the database.
static Role Role.getEveryoneNode(RepositoryConnection repositoryConnection, java.lang.Long modified)
          Get the Role that covers every user
 NamedGraph NamedGraph.Factory.getResource(RepositoryConnection repositoryConnection, java.lang.Long id, boolean forceCreate)
           
 ACI ACI.Factory.getResource(RepositoryConnection repositoryConnection, java.lang.Long id, boolean forceCreate)
           
static User User.getUser(org.openrdf.model.URI uri, RepositoryConnection repositoryConnection)
          Load a User from user's URI
static boolean NamedGraph.isStored(RepositoryConnection repositoryConnection, java.lang.Long id)
          Is this NamedGraph stored in database
static ACI ACI.loadACI(RepositoryConnection repositoryConnection, java.lang.Long id)
          Given an AccessControl item's unique id, attempts to load it from repository.
static NamedGraph NamedGraph.loadNamedGraph(java.lang.Long id, RepositoryConnection repositoryConnection)
          Load a NamedGraph from database
static Role Role.loadRole(java.lang.Long id, RepositoryConnection repositoryConnection)
          Load a role from the database
static User User.loadUser(java.lang.Long userId, RepositoryConnection repositoryConnection)
          Load a User based on the user's Id.
static void Role.removeSubRole(RepositoryConnection repositoryConnection, Role parent, Role child, java.lang.Long modified)
          Remove a child role from a parent role in the database
static java.util.List<Statement> Statement.selectAllStatements(RepositoryConnection repositoryConnection, boolean includeInferredStatements)
          Returns a list of all Statements in the statements table.
 

Constructors in org.openanzo.server.repository.structures with parameters of type RepositoryConnection
ACL(RepositoryConnection repositoryConnection, java.lang.Long id)
          New ACL with given ID, and RepositoryConnection
Role(java.lang.Long id, RepositoryConnection repositoryConnection)
          Builds a role object for the given id.
 

Uses of RepositoryConnection in org.openanzo.server.repository.update
 

Methods in org.openanzo.server.repository.update that return RepositoryConnection
 RepositoryConnection ServerUpdatesProcessor.getRepositoryConnection()
           
 

Constructors in org.openanzo.server.repository.update with parameters of type RepositoryConnection
ServerUpdatesProcessor(RepositoryConnection repositoryConnection, UpdateResults updateResults)
          Create a new ServerUpdatesProcessor
ServerWriter(RepositoryConnection repositoryConnection, java.io.OutputStream out)
          Create a new ServerWriter
ServerWriter(RepositoryConnection repositoryConnection, java.io.OutputStream out, java.util.HashMap<java.lang.Long,org.openrdf.model.Value> visitedUris)
          Create a new ServerWriter
UpdateHandler(RepositoryConnection repositoryConnection)
          Create a new UpdateHandler
UpdateManager(RepositoryConnection repositoryConnection)
          Create a new UpdateManager
 

Uses of RepositoryConnection in org.openanzo.server.security
 

Methods in org.openanzo.server.security with parameters of type RepositoryConnection
 org.openrdf.model.URI IAuthenticationProvider.authenticateUser(RepositoryConnection repositoryConnection, java.lang.String userId, java.lang.String password)
          Authenticate the userId and password with provider, and return the URI of the user within Anzo
 org.openrdf.model.URI JaasAuthenticationProvider.authenticateUser(RepositoryConnection repositoryConnection, java.lang.String userId, java.lang.String password)
           
 org.openrdf.model.URI LdapAuthenticationProvider.authenticateUser(RepositoryConnection repositoryConnection, java.lang.String userId, java.lang.String password)
           
 org.openrdf.model.URI AuthenticationProvider.authenticateUser(RepositoryConnection repositoryConnection, java.lang.String userId, java.lang.String password)
           
 



Copyright © 2007 Cambridge Semantics Inc.. All Rights Reserved.