@Component(value="linkedDataService") public class LinkedDataServiceImpl extends java.lang.Object implements LinkedDataService, org.springframework.beans.factory.InitializingBean
| Constructor and Description |
|---|
LinkedDataServiceImpl() |
| Modifier and Type | Method and Description |
|---|---|
void |
afterPropertiesSet() |
org.apache.jena.query.Dataset |
getAtomDataset(java.net.URI atomUri,
boolean deep,
java.lang.Integer deepLayerSize)
Returns a dataset describing the atom with the specified URI.
|
DataWithEtag<org.apache.jena.query.Dataset> |
getAtomDataset(java.net.URI atomUri,
java.lang.String etag)
Returns a dataset describing the atom, if the etag indicates that it has
changed.
|
org.apache.jena.query.Dataset |
getAtomDatasetForFilter(java.net.URI atomUri) |
DataWithEtag<org.apache.jena.query.Dataset> |
getConnectionDataset(java.net.URI connectionUri,
boolean includeMessageContainer,
java.lang.String etag)
ETag-aware method for obtaining connection data.
|
DataWithEtag<org.apache.jena.query.Dataset> |
getDatasetForUri(java.net.URI datasetUri,
java.lang.String etag)
returns a dataset of the (message) event with the specified URI, with a value
that can be used for an etag.
|
org.apache.jena.query.Dataset |
getNodeDataset() |
org.apache.jena.rdf.model.Model |
getUnreadInformationForAtom(java.net.URI atomURI,
java.util.Collection<java.net.URI> lastSeenMessageURIs)
Returns a model specifying the number of messages and their latest and
earliest timestamp found per connection after the specified
lastSeenMessageURI, or the total message count and respective timestamps for
a connection for which no lastSeenMessageURI is specified.
|
org.apache.jena.query.Dataset |
listAtomURIs()
Returns a model containing all atom URIs.
|
org.apache.jena.query.Dataset |
listAtomURIs(AtomState atomState)
Returns a model containing all atom URIs with the given atomState.
|
org.apache.jena.query.Dataset |
listAtomURIs(AtomState atomState,
java.net.URI filterSocketTypeUri,
java.net.URI filterAtomTypeUri)
Returns a model containing all atom URIs with the given atomState.
|
org.apache.jena.query.Dataset |
listAtomURIsCreatedAfter(java.util.Date createdDate,
AtomState atomState,
java.net.URI filterSocketTypeUri,
java.net.URI filterAtomTypeUri)
Returns container dataset containing all atoms that have been created after a
certain date
|
org.apache.jena.query.Dataset |
listAtomURIsModifiedAfter(java.util.Date modifiedDate,
AtomState atomState,
java.net.URI filterSocketTypeUri,
java.net.URI filterAtomTypeUri)
Returns container dataset containing all atoms that have been modified after
a certain date
|
org.apache.jena.query.Dataset |
listConnection(java.net.URI socketUri,
java.net.URI targetSocketUri,
boolean deep)
Returns the dataset describing the connection between the two specified
sockets.
|
org.apache.jena.query.Dataset |
listConnectionEventURIs(java.net.URI connectionUri,
boolean deep)
Returns a dataset containing all event uris belonging to the specified
connection.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listConnectionEventURIs(java.net.URI connectionUri,
int pageNum,
java.lang.Integer preferedSize,
WonMessageType msgType,
boolean deep)
Returns paged resource containing all event uris belonging to the specified
connection.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listConnectionEventURIsAfter(java.net.URI connectionUri,
java.net.URI msgURI,
java.lang.Integer preferedSize,
WonMessageType msgType,
boolean deep)
Returns a dataset containing all event uris belonging to the specified
connection that were created after the specified event uri.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listConnectionEventURIsBefore(java.net.URI connectionUri,
java.net.URI msgURI,
java.lang.Integer preferedSize,
WonMessageType msgType,
boolean deep)
Returns a dataset containing all event uris belonging to the specified
connection that were created before the specified event uri.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnections(boolean deep)
Returns container dataset containing all connections.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnections(int page,
java.lang.Integer preferredSize,
java.util.Date timeSpot,
boolean deep)
Returns a resource containing connections at given page.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnections(int page,
java.net.URI atomURI,
java.lang.Integer preferredSize,
WonMessageType messageType,
java.util.Date timeSpot,
boolean deep,
boolean addMetadata)
Returns paged resource containing all connections belonging to the specified
atom.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnections(java.net.URI atomURI,
boolean deep,
boolean addMetadata)
Returns a model containing all connection uris belonging to the specified
atom.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnectionsAfter(java.net.URI afterConnURI,
java.lang.Integer preferredSize,
java.util.Date timeSpot,
boolean deep)
Returns a resource containing connections that follow (by time of their
latest event activities) the given connection as of state that was at the
specified time.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnectionsAfter(java.net.URI atomURI,
java.net.URI resumeConnURI,
java.lang.Integer preferredSize,
WonMessageType messageType,
java.util.Date timeSpot,
boolean deep,
boolean addMetadata)
Returns paged resource containing all connections belonging to the specified
atom that follows the given connection URI from the point of view of their
latest events.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnectionsBefore(java.net.URI beforeConnURI,
java.lang.Integer preferredSize,
java.util.Date timeSpot,
boolean deep)
Returns a resource containing connection uris that precede (by time of their
latest event activities) the given connection as of state that was at the
specified time.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listConnectionsBefore(java.net.URI atomURI,
java.net.URI beforeEventURI,
java.lang.Integer preferredSize,
WonMessageType messageType,
java.util.Date timeSpot,
boolean deep,
boolean addMetadata)
Returns paged resource containing all connections belonging to the specified
atom that precede the given connection URI from the point of view of their
latest events.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> |
listModifiedConnectionsAfter(java.util.Date modifiedAfter,
boolean deep)
Returns container dataset containing all connection URIs that where modified
after a certain date.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listPagedAtomURIs(int pageNum)
Returns a model containing all atom URIs.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listPagedAtomURIs(int pageNum,
java.lang.Integer preferedSize,
AtomState atomState)
Returns a model containing all atom URIs that are in the specified state.
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listPagedAtomURIsAfter(java.net.URI atom)
Return all atom URIs that where created after the provided atom
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listPagedAtomURIsAfter(java.net.URI atom,
java.lang.Integer preferedSize,
AtomState atomState)
Return all atom URIs that where created after the provided atom and that are
in the specified state
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listPagedAtomURIsBefore(java.net.URI atom)
Return all atom URIs that where created before the provided atom
|
AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> |
listPagedAtomURIsBefore(java.net.URI atom,
java.lang.Integer preferedSize,
AtomState atomState)
Return all atom URIs that where created after the provided atom and that are
in the specified state
|
org.apache.jena.query.Dataset |
makeConnectionContainer(java.lang.String containerUri,
java.util.List<Connection> connections) |
void |
setActiveMqAtomProtcolQueueName(java.lang.String activeMqAtomProtcolQueueName) |
void |
setActiveMqEndpoint(java.lang.String activeMqEndpoint) |
void |
setActiveMqMatcherProtocolTopicNameAtomActivated(java.lang.String activeMqMatcherProtocolTopicNameAtomActivated) |
void |
setActiveMqMatcherProtocolTopicNameAtomCreated(java.lang.String activeMqMatcherProtocolTopicNameAtomCreated) |
void |
setActiveMqMatcherProtocolTopicNameAtomDeactivated(java.lang.String activeMqMatcherProtocolTopicNameAtomDeactivated) |
void |
setActiveMqMatcherProtocolTopicNameAtomDeleted(java.lang.String activeMqMatcherProtocolTopicNameAtomDeleted) |
void |
setActiveMqMatcherPrtotocolQueueName(java.lang.String activeMqMatcherPrtotocolQueueName) |
void |
setActiveMqOwnerProtcolQueueName(java.lang.String activeMqOwnerProtcolQueueName) |
void |
setAtomInformationService(AtomInformationService atomInformationService) |
void |
setAtomResourceURIPrefix(java.lang.String atomResourceURIPrefix) |
void |
setConnectionResourceURIPrefix(java.lang.String connectionResourceURIPrefix) |
void |
setEventResourceURIPrefix(java.lang.String eventResourceURIPrefix) |
void |
setResourceURIPrefix(java.lang.String resourceURIPrefix) |
void |
setUriService(URIService uriService) |
public void afterPropertiesSet()
throws java.lang.Exception
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBeanjava.lang.Exception@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset listAtomURIs()
LinkedDataServicelistAtomURIs in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset listAtomURIs(AtomState atomState)
LinkedDataServicelistAtomURIs in interface LinkedDataServiceatomState - State that an atom needs to have to be included.@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset listAtomURIs(AtomState atomState,
java.net.URI filterSocketTypeUri,
java.net.URI filterAtomTypeUri)
LinkedDataServicelistAtomURIs in interface LinkedDataServiceatomState - State that an atom needs to have to be included.filterSocketTypeUri - socket type uri that an atom needs to have to be
includedfilterAtomTypeUri - atom type uri that an atom needs to have to be
included@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listPagedAtomURIs(int pageNum)
LinkedDataServicelistPagedAtomURIs in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listPagedAtomURIsBefore(java.net.URI atom)
LinkedDataServicelistPagedAtomURIsBefore in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listPagedAtomURIsAfter(java.net.URI atom)
LinkedDataServicelistPagedAtomURIsAfter in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listPagedAtomURIs(int pageNum,
java.lang.Integer preferedSize,
AtomState atomState)
LinkedDataServicelistPagedAtomURIs in interface LinkedDataServicepreferedSize - preferred number of atom uris per page (null means use
default)@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listPagedAtomURIsBefore(java.net.URI atom,
java.lang.Integer preferedSize,
AtomState atomState)
LinkedDataServicelistPagedAtomURIsBefore in interface LinkedDataServicepreferedSize - preferred number of atom uris per page (null means use
default)@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listPagedAtomURIsAfter(java.net.URI atom,
java.lang.Integer preferedSize,
AtomState atomState)
LinkedDataServicelistPagedAtomURIsAfter in interface LinkedDataServicepreferedSize - preferred number of atom uris per page (null means use
default)@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset listAtomURIsModifiedAfter(java.util.Date modifiedDate,
AtomState atomState,
java.net.URI filterSocketTypeUri,
java.net.URI filterAtomTypeUri)
LinkedDataServicelistAtomURIsModifiedAfter in interface LinkedDataServicemodifiedDate - modification date of atomsatomState - filter by atomStatefilterSocketTypeUri - socket type uri that an atom needs to have to be
includedfilterAtomTypeUri - atom type uri that an atom needs to have to be
included@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset listAtomURIsCreatedAfter(java.util.Date createdDate,
AtomState atomState,
java.net.URI filterSocketTypeUri,
java.net.URI filterAtomTypeUri)
LinkedDataServicelistAtomURIsCreatedAfter in interface LinkedDataServicecreatedDate - creation date of atomsatomState - filter by atomStatefilterSocketTypeUri - socket type uri that an atom needs to have to be
includedfilterAtomTypeUri - atom type uri that an atom needs to have to be
included@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public DataWithEtag<org.apache.jena.query.Dataset> getAtomDataset(java.net.URI atomUri,
java.lang.String etag)
LinkedDataServicegetAtomDataset in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset getAtomDataset(java.net.URI atomUri,
boolean deep,
java.lang.Integer deepLayerSize)
throws NoSuchAtomException,
NoSuchConnectionException,
org.springframework.context.NoSuchMessageException
LinkedDataServicegetAtomDataset in interface LinkedDataServicedeep - - include atom's connections datasets and each connection's
events' datasetsdeepLayerSize - - number of connections and events to include in the
deep atom datasetNoSuchAtomExceptionNoSuchConnectionExceptionorg.springframework.context.NoSuchMessageException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.rdf.model.Model getUnreadInformationForAtom(java.net.URI atomURI,
java.util.Collection<java.net.URI> lastSeenMessageURIs)
LinkedDataServicegetUnreadInformationForAtom in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset getNodeDataset()
getNodeDataset in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public DataWithEtag<org.apache.jena.query.Dataset> getConnectionDataset(java.net.URI connectionUri,
boolean includeMessageContainer,
java.lang.String etag)
getConnectionDataset in interface LinkedDataServiceconnectionUri - includeMessageContainer - includeMessageContainer - etag - @Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset listConnection(java.net.URI socketUri,
java.net.URI targetSocketUri,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnection in interface LinkedDataServiceNoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnections(boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnections in interface LinkedDataServiceNoSuchConnectionException - only in case deep is set to true and
connection data for a member connection uri cannot be retrieved.@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listModifiedConnectionsAfter(java.util.Date modifiedAfter,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistModifiedConnectionsAfter in interface LinkedDataServicemodifiedAfter - modification datedeep - If deep is true, the resource data of those connection uris is
also part of the returned resource.NoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnections(int page,
java.lang.Integer preferredSize,
java.util.Date timeSpot,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnections in interface LinkedDataServicepreferredSize - preferred number of connection uris per page (null means
use default)NoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnectionsBefore(java.net.URI beforeConnURI,
java.lang.Integer preferredSize,
java.util.Date timeSpot,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnectionsBefore in interface LinkedDataServicebeforeConnURI - a connection the preceding connections of which we are
interested inpreferredSize - preferred number of connection uris per page (null means
use default)timeSpot - date and time that specifies the connections and events state
of interestdeep - if true, the resource data of those connection uris is also part
of the resourceNoSuchConnectionException - only in case deep is set to true and
connection data for a member connection uri cannot be retrieved.@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnectionsAfter(java.net.URI afterConnURI,
java.lang.Integer preferredSize,
java.util.Date timeSpot,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnectionsAfter in interface LinkedDataServiceafterConnURI - a connection the following connections of which we are
interested inpreferredSize - preferred number of connection uris per page (null means
use default)timeSpot - date and time that specifies the connections and events state
of interestdeep - if true, the resource data of those connection uris is also part
of the resourceNoSuchConnectionException - only in case deep is set to true and
connection data for a member connection uri cannot be retrieved.@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnections(java.net.URI atomURI,
boolean deep,
boolean addMetadata)
throws NoSuchAtomException,
NoSuchConnectionException
LinkedDataServicelistConnections in interface LinkedDataServicedeep - - if true, connection data is added (not only connection URIs)addMetadata - - if true, a metadata graph is added to the dataset
containing counts by connection stateNoSuchAtomExceptionNoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnections(int page,
java.net.URI atomURI,
java.lang.Integer preferredSize,
WonMessageType messageType,
java.util.Date timeSpot,
boolean deep,
boolean addMetadata)
throws NoSuchAtomException,
NoSuchConnectionException
LinkedDataServicelistConnections in interface LinkedDataServicepage - numberatomURI - local atom the connections of which are retrievedpreferredSize - preferred number of connection uris per page (null means
use default)messageType - the event type that should be used for defining connection
latest activity; null => all event typestimeSpot - time at which we want the list state to be fixeddeep - if true, the resource data of those connection uris is also part
of the resourceaddMetadata - - if true, a metadata graph is added to the dataset
containing counts by connection stateNoSuchAtomException - when specified atom is not foundNoSuchConnectionException - only in case deep is set to true and
connection data for a member connection uri cannot be retrieved.@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnectionsBefore(java.net.URI atomURI,
java.net.URI beforeEventURI,
java.lang.Integer preferredSize,
WonMessageType messageType,
java.util.Date timeSpot,
boolean deep,
boolean addMetadata)
throws NoSuchAtomException,
NoSuchConnectionException
LinkedDataServicelistConnectionsBefore in interface LinkedDataServiceatomURI - local atom the connections of which are retrievedbeforeEventURI - the returned slice connections precede (in time of their
latest events) this connection uripreferredSize - preferred number of connection uris per page (null means
use default)messageType - the event type that should be used for defining connection
latest activity; null => all event typestimeSpot - time at which we want the list state to be fixeddeep - if true, the resource data of those connection uris is also part
of the resourceaddMetadata - - if true, a metadata graph is added to the dataset
containing counts by connection stateNoSuchAtomException - when specified atom is not foundNoSuchConnectionException - only in case deep is set to true and
connection data for a member connection uri cannot be retrieved.@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,Connection> listConnectionsAfter(java.net.URI atomURI,
java.net.URI resumeConnURI,
java.lang.Integer preferredSize,
WonMessageType messageType,
java.util.Date timeSpot,
boolean deep,
boolean addMetadata)
throws NoSuchAtomException,
NoSuchConnectionException
LinkedDataServicelistConnectionsAfter in interface LinkedDataServiceatomURI - local atom the connections of which are retrievedresumeConnURI - the returned slice connections follow (in time of their
latest events) this connection uripreferredSize - preferred number of connection uris per page (null means
use default)messageType - the event type that should be used for defining connection
latest activity; null => all event typestimeSpot - time at which we want the list state to be fixeddeep - if true, the resource data of those connection uris is also part
of the resourceaddMetadata - - if true, a metadata graph is added to the dataset
containing counts by connection stateNoSuchAtomException - when specified atom is not foundNoSuchConnectionException - only in case deep is set to true and
connection data for a member connection uri cannot be retrieved.@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset listConnectionEventURIs(java.net.URI connectionUri,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnectionEventURIs in interface LinkedDataServicedeep - - include events datasetNoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listConnectionEventURIs(java.net.URI connectionUri,
int pageNum,
java.lang.Integer preferedSize,
WonMessageType msgType,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnectionEventURIs in interface LinkedDataServiceconnectionUri - connection parent of the eventspageNum - number of the page to be returnedpreferedSize - preferred number of uris per page, null means use defaultmsgType - message type, null means all typesNoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listConnectionEventURIsAfter(java.net.URI connectionUri,
java.net.URI msgURI,
java.lang.Integer preferedSize,
WonMessageType msgType,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnectionEventURIsAfter in interface LinkedDataServiceconnectionUri - connection parent of the eventsmsgURI - message to follow (in message creation time)preferedSize - preferred number of uris per page, null means use defaultmsgType - message type, null means all typesNoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public AtomInformationService.PagedResource<org.apache.jena.query.Dataset,java.net.URI> listConnectionEventURIsBefore(java.net.URI connectionUri,
java.net.URI msgURI,
java.lang.Integer preferedSize,
WonMessageType msgType,
boolean deep)
throws NoSuchConnectionException
LinkedDataServicelistConnectionEventURIsBefore in interface LinkedDataServiceconnectionUri - connection parent of the eventsmsgURI - message to precede (in message creation time)preferedSize - preferred number of uris per page, null means use defaultmsgType - message type, null means all typesNoSuchConnectionException@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public DataWithEtag<org.apache.jena.query.Dataset> getDatasetForUri(java.net.URI datasetUri,
java.lang.String etag)
LinkedDataServicegetDatasetForUri in interface LinkedDataService@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset makeConnectionContainer(java.lang.String containerUri,
java.util.List<Connection> connections)
public void setAtomResourceURIPrefix(java.lang.String atomResourceURIPrefix)
public void setConnectionResourceURIPrefix(java.lang.String connectionResourceURIPrefix)
public void setEventResourceURIPrefix(java.lang.String eventResourceURIPrefix)
public void setResourceURIPrefix(java.lang.String resourceURIPrefix)
public void setAtomInformationService(AtomInformationService atomInformationService)
public void setUriService(URIService uriService)
public void setActiveMqOwnerProtcolQueueName(java.lang.String activeMqOwnerProtcolQueueName)
public void setActiveMqAtomProtcolQueueName(java.lang.String activeMqAtomProtcolQueueName)
public void setActiveMqMatcherPrtotocolQueueName(java.lang.String activeMqMatcherPrtotocolQueueName)
public void setActiveMqEndpoint(java.lang.String activeMqEndpoint)
public void setActiveMqMatcherProtocolTopicNameAtomCreated(java.lang.String activeMqMatcherProtocolTopicNameAtomCreated)
public void setActiveMqMatcherProtocolTopicNameAtomActivated(java.lang.String activeMqMatcherProtocolTopicNameAtomActivated)
public void setActiveMqMatcherProtocolTopicNameAtomDeactivated(java.lang.String activeMqMatcherProtocolTopicNameAtomDeactivated)
public void setActiveMqMatcherProtocolTopicNameAtomDeleted(java.lang.String activeMqMatcherProtocolTopicNameAtomDeleted)
@Transactional(propagation=REQUIRED,
isolation=READ_COMMITTED,
readOnly=true)
public org.apache.jena.query.Dataset getAtomDatasetForFilter(java.net.URI atomUri)
getAtomDatasetForFilter in interface LinkedDataServiceCopyright © 2019. All Rights Reserved.