Uses of Class
org.hcjf.service.ServiceSession
-
Packages that use ServiceSession Package Description org.hcjf.cloud.impl.network org.hcjf.io.console org.hcjf.io.net org.hcjf.io.net.http org.hcjf.layers org.hcjf.log org.hcjf.service -
-
Uses of ServiceSession in org.hcjf.cloud.impl.network
Subclasses of ServiceSession in org.hcjf.cloud.impl.network Modifier and Type Class Description classCloudSession -
Uses of ServiceSession in org.hcjf.io.console
Subclasses of ServiceSession in org.hcjf.io.console Modifier and Type Class Description classConsoleSessionDefault session for the console connection.Methods in org.hcjf.io.console that return ServiceSession Modifier and Type Method Description protected abstract ServiceSessionConsoleServer. login(java.util.Map<java.lang.String,java.lang.Object> parameters)Make the login in the server. -
Uses of ServiceSession in org.hcjf.io.net
Subclasses of ServiceSession in org.hcjf.io.net Modifier and Type Class Description classNetSessionThis interface define de behavior of the net session.Fields in org.hcjf.io.net declared as ServiceSession Modifier and Type Field Description ServiceSessionNetServiceConsumer.DecoupledAction. serviceSessionMethods in org.hcjf.io.net that return ServiceSession Modifier and Type Method Description ServiceSessionNetServiceConsumer.DecoupledAction. getServiceSession()Constructors in org.hcjf.io.net with parameters of type ServiceSession Constructor Description DecoupledAction(ServiceSession serviceSession) -
Uses of ServiceSession in org.hcjf.io.net.http
Subclasses of ServiceSession in org.hcjf.io.net.http Modifier and Type Class Description classHttpSessionNet session implementation for the http protocol -
Uses of ServiceSession in org.hcjf.layers
Methods in org.hcjf.layers that return ServiceSession Modifier and Type Method Description protected ServiceSessionLayer. getSession()Return the session associated to the execution thread. -
Uses of ServiceSession in org.hcjf.log
Methods in org.hcjf.log that return ServiceSession Modifier and Type Method Description ServiceSessionLog.LogRecord. getCurrentSession()Returns the session instance owner of this record. -
Uses of ServiceSession in org.hcjf.service
Methods in org.hcjf.service with type parameters of type ServiceSession Modifier and Type Method Description <S extends ServiceSession>
SServiceSession. currentIdentity()Return the last identity added into the session.static <S extends ServiceSession>
SServiceSession. findSession(java.util.Map<java.lang.String,java.lang.Object> sessionBean)Returns the service session instance rebuilding using the bean as parameter.static <S extends ServiceSession>
SServiceSession. findSession(java.util.UUID sessionId)Finds the service session using the id of the session.<S extends ServiceSession>
SServiceSession.ServiceSessionSource. findSession(java.util.Map<java.lang.String,java.lang.Object> sessionBean)Returns the service session instance rebuilding using the bean as parameter.<S extends ServiceSession>
SServiceSession.ServiceSessionSource. findSession(java.util.UUID sessionId)Returns the service session instance indexed by the id parameter.static <S extends ServiceSession>
SServiceSession. getCurrentIdentity()Return the current identity associated to the current thread.static <S extends ServiceSession>
SServiceSession. getCurrentSession()This method obtain the current session from the current thread.Methods in org.hcjf.service that return ServiceSession Modifier and Type Method Description static ServiceSessionServiceSession. getGuestSession()Return the instance of the guest session.ServiceSessionServiceThread. getSession()Return the session of the thread.static ServiceSessionServiceSession. getSystemSession()Return the instance of the system session.Methods in org.hcjf.service with parameters of type ServiceSession Modifier and Type Method Description static <O> OService. call(java.util.concurrent.Callable<O> callable, ServiceSession serviceSession)This method execute a callable instance and wait for the response.static <O> OService. call(java.util.concurrent.Callable<O> callable, ServiceSession serviceSession, long timeout)This method execute a callable instance and wait for the response.static <O> OServiceSession. callAs(java.util.concurrent.Callable<O> callable, ServiceSession newIdentity)Run the callable instance in the same thread but in the scope of other identity, when the callable code ends the identity is removed automatically no matter how it's finished.static voidService. run(java.lang.Runnable runnable, ServiceSession session)This method is the gateway to the service subsystem from context out of the hcjf domain.static voidService. run(java.lang.Runnable runnable, ServiceSession session, boolean waitFor, long timeout)This method is the gateway to the service subsystem from context out of the hcjf domain.static voidServiceSession. runAs(java.lang.Runnable runnable, ServiceSession newIdentity)Run the runnable instance in the same thread but in the scope of other identity, when the runnable code ends the identity is removed automatically no matter how it's finished.voidServiceThread. setSession(ServiceSession session)Set the session for the thread.
-