Uses of Class
info.sswap.api.model.DataAccessException

Packages that use DataAccessException
info.sswap.api.model Main package for SSWAP API 
info.sswap.api.spi Run-time API provider for interface implementation 
info.sswap.impl.empire   
info.sswap.impl.empire.io   
info.sswap.impl.empire.model   
info.sswap.ontologies.data.api Data Ontology API 
info.sswap.ontologies.data.impl Data Ontology Implementation 
 

Uses of DataAccessException in info.sswap.api.model
 

Methods in info.sswap.api.model that throw DataAccessException
static PDG SSWAP.createPDG(java.net.URI providerURI, java.lang.String name, java.lang.String oneLineDescription)
          Creates a PDG with the specified values.
static SSWAPProvider SSWAP.createProvider(java.net.URI providerURI)
          Creates an object representing a SSWAPProvider.
static RDG SSWAP.createRDG(java.net.URI resourceURI, java.lang.String name, java.lang.String oneLineDescription, SSWAPProvider provider)
          Creates a new RDG
static RDG SSWAP.createRDG(java.net.URI resourceURI, java.lang.String name, java.lang.String oneLineDescription, java.net.URI providerURI)
          Creates a new RDG
static SSWAPResource SSWAP.createResource(java.net.URI resourceURI)
          Gets a SSWAPResource that is defined in the RDG that exists at the specified URI (the resource should have the same URI as the RDG).
 RIG RRG.createRIG(RDG rdg)
          Returns a new Resource Invocation Graph (RIG) based on the contents of this Resource Response Graph (RRG) suitable for the service represented by the Resource Description Graph (RRG).
 RQG RRG.createRQG()
           
static RQG SSWAP.createRQG(java.net.URI resourceURI)
          Creates a basic RQG from scratch.
static SSWAPDocument SSWAP.createSSWAPDocument()
          Creates an empty SSWAPDocument.
static SSWAPDocument SSWAP.createSSWAPDocument(java.net.URI uri)
          Creates an empty SSWAPModel.
 void SSWAPModel.dereference()
          If the object is not dereferenced, it dereferences it.
 void SSWAPModel.dereference(java.io.InputStream is)
          Dereferences the object (if it is not yet dereferenced) but it reads the data from the given stream, rather than trying to to retrieve the URI of this object.
static PDG SSWAP.getPDG(java.net.URI providerURI)
          Creates an object representing an PDG.
 RDG SSWAPResource.getRDG()
          Gets the RDG where this resource is defined.
static RDG SSWAP.getRDG(java.net.URI uri)
          Creates an object representing an RDG.
 java.util.Collection<RDG> PDG.getRDGs()
          Gets all RDGs pointed to by a sswap:providesResource statement in this PDG
static
<T extends SSWAPDocument>
T
SSWAP.getResourceGraph(java.io.InputStream is, java.lang.Class<T> clazz)
          Creates a SSWAPDocument graph from its serialization in an input stream.
static
<T extends SSWAPDocument>
T
SSWAP.getResourceGraph(java.io.InputStream is, java.lang.Class<T> clazz, java.net.URI uri)
          Creates a SSWAPDocument graph from its serialization in an input stream.
 RIG RDG.getRIG()
          Gets the RIG that can be used to invoke the service described in this RDG (after setting the values for the properties).
 RIG RDG.getRIG(java.io.InputStream is)
          Creates a RIG object based on the serialized RIG (e.g., sent by a client of a service).
static RQG SSWAP.getRQG(java.io.InputStream is)
          Reads an RQG from an input stream.
 RRG RIG.getRRG()
          Gets the RRG that can be used to create a response to the RIG.
 RRG RIG.getRRG(java.io.InputStream is)
          Creates an RRG based on the serialized RRG data (e.g., sent by a provider of the service in response to this RIG having been sent to the provider).
 java.util.Collection<RDG> RQG.invoke()
          Sends this RQG as a query to the default Discovery Server
 java.util.Collection<RDG> RQG.invoke(java.net.URI discoveryServerURI)
          Sends this RQG as a query to the specified discovery server instance.
 

Uses of DataAccessException in info.sswap.api.spi
 

Methods in info.sswap.api.spi that throw DataAccessException
 RDG APIProvider.getRDG(java.net.URI uri)
          Gets a dereferenced RDG implementation
<T extends SSWAPDocument>
T
APIProvider.getResourceGraph(java.io.InputStream is, java.lang.Class<T> clazz, java.net.URI uri)
          Creates a SSWAPDocument graph from its serialization in an input stream.
 

Uses of DataAccessException in info.sswap.impl.empire
 

Methods in info.sswap.impl.empire that throw DataAccessException
 PDG APIProviderImpl.createPDG(java.net.URI providerURI, java.lang.String name, java.lang.String oneLineDescription)
           
 SSWAPProvider APIProviderImpl.createProvider(java.net.URI uri)
           
 RDG APIProviderImpl.createRDG(java.net.URI resourceURI, java.lang.String name, java.lang.String oneLineDescription, java.net.URI providerURI)
           
 SSWAPResource APIProviderImpl.createResource(java.net.URI uri)
           
 RQG APIProviderImpl.createRQG(java.net.URI resourceURI)
           
 SSWAPDocument APIProviderImpl.createSSWAPDocument(java.net.URI uri)
           
 RIG APIProviderImpl.getAsyncRIG(java.net.URI serviceURI, java.net.URI upstreamRRG)
           
 PDG APIProviderImpl.getPDG(java.net.URI uri)
           
 RDG APIProviderImpl.getRDG(java.net.URI uri)
           
<T extends SSWAPDocument>
T
APIProviderImpl.getResourceGraph(java.io.InputStream is, java.lang.Class<T> clazz, java.net.URI uri)
           
 RQG APIProviderImpl.getRQG(java.io.InputStream is)
           
 

Uses of DataAccessException in info.sswap.impl.empire.io
 

Methods in info.sswap.impl.empire.io that throw DataAccessException
private  com.hp.hpl.jena.rdf.model.Model ClosureBuilder.dereferenceURL(java.lang.String urlString)
          Retrieves a document at the specified URL and parses it into the Jena model.
 

Uses of DataAccessException in info.sswap.impl.empire.model
 

Methods in info.sswap.impl.empire.model that throw DataAccessException
<T extends ModelImpl>
T
ImplFactory.createEmptySSWAPDataObject(java.net.URI uri, java.lang.Class<T> clazz)
          Creates an empty Empire-generated object.
 javax.persistence.EntityManager ImplFactory.createEntityManager(java.lang.Object stream, java.lang.String format)
          Creates a new entity manager for a Jena data source.
 RIG RRGImpl.createRIG(RDG rdg)
           
 void NodeImpl.dereference()
          Dereferences this node, by first calling dereference() on the source model (if there is one; in case there is no source model, this method immediately returns).
 void ProviderImpl.dereference()
           
 void ResourceImpl.dereference()
          Dereferences this SSWAPResource.
 void SourceModelImpl.dereference()
           
 void SourceModelImpl.dereference(java.io.InputStream is)
           
protected  void ProtocolImpl.dereference(ProtocolImpl otherGraph)
          Populates this graph (must not be dereferenced yet) with the contents of another graph.
private  void SourceModelImpl.doDereference(java.lang.Object source)
          Performs actual dereferencing
 com.hp.hpl.jena.rdf.model.Model JenaModelFactory.getModel(java.io.InputStream is)
          Gets a model read from an input stream
 com.hp.hpl.jena.rdf.model.Model JenaModelFactory.getModel(java.io.InputStream is, java.lang.String format)
           
 RDG ResourceImpl.getRDG()
           
 java.util.Collection<RDG> PDGImpl.getRDGs()
           
 RIG RDGImpl.getRIG()
           
 RIG RDGImpl.getRIG(java.io.InputStream is)
           
 RRG RIGImpl.getRRG()
           
 RRG RIGImpl.getRRG(java.io.InputStream is)
           
 java.util.Collection<RDG> RQGImpl.invoke()
           
 java.util.Collection<RDG> RQGImpl.invoke(java.net.URI discoveryServerURIString)
           
 

Uses of DataAccessException in info.sswap.ontologies.data.api
 

Subclasses of DataAccessException in info.sswap.ontologies.data.api
 class AccessorException
          Accessor-specific exceptions.
 class DataException
          Root class for all Data-specific exceptions.
 class ParserException
          Parser-specific exceptions.
 class SerializerException
          Serializer-specific exceptions.
 class ValidatorException
           
 

Uses of DataAccessException in info.sswap.ontologies.data.impl
 

Constructors in info.sswap.ontologies.data.impl that throw DataAccessException
AttachmentImpl(SSWAPIndividual sswapIndividual)
          Enables reading and writing of literal data as base64 "attachments".
HTTPBasicAuthenticationAccessor(java.lang.String username, java.lang.String passwd)
          HTTP Basic Authentication Accessor
HTTPBasicAuthImpl(SSWAPIndividual sswapIndividual, java.lang.String username, java.lang.String passwd)
          Construct HTTP Authentication access.
 



Copyright (c) 2011, iPlant Collaborative, University of Arizona, Cold Spring Harbor Laboratories, University of Texas at Austin.