| Package | Description |
|---|---|
| com.tangosol.coherence.rest |
Contains classes related to the Coherence REST API.
|
| com.tangosol.coherence.rest.util |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
EntryResource.get(PropertySet propertySet,
javax.ws.rs.core.Request request)
Return the entry value or a subset of its properties.
|
javax.ws.rs.core.Response |
CacheResource.getEntries(int nStart,
int cResults,
String sSort,
PropertySet propertySet,
String sQuery)
Return the cache entries that satisfy the given query criteria.
|
javax.ws.rs.core.Response |
EntrySetResource.getEntries(PropertySet propertySet) |
javax.ws.rs.core.Response |
NamedQueryResource.getEntries(javax.ws.rs.core.UriInfo uriInfo,
int nStart,
int cResults,
String sSort,
PropertySet propertySet)
Return the cache entries that satisfy criteria defined by
this resource.
|
javax.ws.rs.core.Response |
CacheResource.getValues(int nStart,
int cResults,
String sSort,
PropertySet propertySet,
String sQuery)
Return the cache values (or a subset of their properties) that
satisfy the specified criteria.
|
javax.ws.rs.core.Response |
EntrySetResource.getValues(PropertySet propertySet)
Return the entries' values or a subset of their properties.
|
javax.ws.rs.core.Response |
NamedQueryResource.getValues(javax.ws.rs.core.UriInfo uriInfo,
int nStart,
int cResults,
String sSort,
PropertySet propertySet)
Return the cache values that satisfy criteria defined by this
resource.
|
| Modifier and Type | Field and Description |
|---|---|
protected PropertySet |
PropertySpec.m_propertySet
A set of nested properties.
|
| Modifier and Type | Method and Description |
|---|---|
static PropertySet |
PropertySet.fromString(String sPropertySet)
Create a PropertySet from its textual representation.
|
PropertySet |
PropertySpec.getPropertySet()
Return the set of nested properties.
|
| Modifier and Type | Method and Description |
|---|---|
static PartialObject |
PartialObject.create(Class clzSource,
PropertySet propertySet,
Map<String,Object> mapProperties)
Create a PartialObject instance based on an already extracted set of
properties.
|
static Object |
PartialObject.create(Object oSource,
PropertySet propertySet)
Create a PartialObject instance.
|
protected static String |
PartialObject.createKey(Class clzSource,
PropertySet propertySet)
Create key for the partial class/constructor cache.
|
static <T> Class |
PartialObject.createPartialClass(Class clzSource,
PropertySet<T> propertySet)
Create a partial class for the specified source class and property set.
|
static Class |
PartialObject.getPartialClass(Class clzSource,
PropertySet propertySet)
Return a partial class for the specified source class and property set.
|
| Constructor and Description |
|---|
PropertySpec(String sName,
PropertySet propertySet)
Construct PropertySpec instance.
|