Package ome.services.blitz.util
Class FindServiceFactoryMessage
- java.lang.Object
-
- java.util.EventObject
-
- org.springframework.context.ApplicationEvent
-
- ome.util.messages.InternalMessage
-
- ome.services.blitz.util.FindServiceFactoryMessage
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
RegisterServantMessage
public class FindServiceFactoryMessage extends ome.util.messages.InternalMessage
InternalMessage
raised when a servant needs to find theServiceFactoryI
instance that the current user is working with.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Ice.Current
curr
protected Ice.Identity
id
protected ServiceFactoryI
sf
-
Constructor Summary
Constructors Constructor Description FindServiceFactoryMessage(java.lang.Object source, Ice.Current current)
FindServiceFactoryMessage(java.lang.Object source, Ice.Identity id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Ice.Current
getCurrent()
Ice.Identity
getIdentity()
ServiceFactoryI
getServiceFactory()
void
setServiceFactory(Ice.Identity id, ServiceFactoryI sf)
Store the information.
-
-
-
Field Detail
-
curr
protected final transient Ice.Current curr
-
id
protected transient Ice.Identity id
-
sf
protected transient ServiceFactoryI sf
-
-
Method Detail
-
getIdentity
public Ice.Identity getIdentity()
-
getCurrent
public Ice.Current getCurrent()
-
setServiceFactory
public void setServiceFactory(Ice.Identity id, ServiceFactoryI sf) throws ServerError
Store the information. Subclasses may try to make remote calls.- Throws:
ServerError
- so that subclasses can make use of remote methods.
-
getServiceFactory
public ServiceFactoryI getServiceFactory()
-
-