| Modifier and Type | Class and Description |
|---|---|
class |
BaseIdentity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractPagedCollection<E,F> |
class |
PagedQuery<E,F> |
| Modifier and Type | Class and Description |
|---|---|
class |
DataObserver |
class |
ManagedEntity<T> |
| Modifier and Type | Class and Description |
|---|---|
class |
ComponentImpl
Default implementation of remote component proxy
Generated typesafe remote service proxies should extend this class
Component proxies are meant to be defined in a DI container (Spring/CDI) or directly in the Tide context
Component myComponent = tideContext.set("myComponent", new ComponentImpl(serverSession));
myComponent.call("myMethod", arg1, arg2);
|
| Modifier and Type | Class and Description |
|---|---|
class |
Identity |
| Modifier and Type | Class and Description |
|---|---|
class |
ServerSession
ServerSession provides an API to manage all communications with the server
It can be setup as a managed bean with Spring or CDI or created manually and attached to a Tide context
ServerSession serverSession = tideContext.set(new ServerSession("/myapp", "localhost", 8080));
|