Module org.apache.jena.fuseki.core
Package org.apache.jena.fuseki.server
Class DataAccessPointRegistry
java.lang.Object
org.apache.jena.atlas.lib.Registry<String,DataAccessPoint>
org.apache.jena.fuseki.server.DataAccessPointRegistry
public class DataAccessPointRegistry
extends org.apache.jena.atlas.lib.Registry<String,DataAccessPoint>
Registry of (dataset name,
DataAccessPoint
).
In addition, registered DataAccessPoint
are added to the metrics.-
Constructor Summary
ConstructorsConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptionCollection of theDataAccessPoints
.static DataAccessPointRegistry
get
(javax.servlet.ServletContext cxt) void
print()
void
void
put
(String accessPointName, DataAccessPoint dap) Deprecated.void
register
(DataAccessPoint accessPt) static void
set
(javax.servlet.ServletContext cxt, DataAccessPointRegistry registry) Methods inherited from class org.apache.jena.atlas.lib.Registry
clear, forEach, isEmpty, isRegistered, keys, remove, size
-
Constructor Details
-
DataAccessPointRegistry
public DataAccessPointRegistry() -
DataAccessPointRegistry
-
-
Method Details
-
register
-
accessPoints
Collection of theDataAccessPoints
. This is a new list generated from the registry contents and not still connected to the registry. Registry changes will not interfere with iteration over the list.DataAccessPoints
can not be registered twice under differerent names (the same dataset can be via differentDataAccessPoints
so the list has no duplicates. There is no defined order to the list. -
put
Deprecated.Useregister(DataAccessPoint)
. This method ignores the accessPointName argument.- Overrides:
put
in classorg.apache.jena.atlas.lib.Registry<String,
DataAccessPoint>
-
get
- Overrides:
get
in classorg.apache.jena.atlas.lib.Registry<String,
DataAccessPoint>
-
print
public void print() -
print
-
get
-
set
-
register(DataAccessPoint)
.