|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.esri.adf.web.data.GISResource
com.esri.adf.web.ags.data.gp.AGSGPResource
com.esri.adf.web.ags.data.gp.AGSLocalGPResource
| Field Summary | |
protected AGSLocalConnection |
delegate
|
protected com.esri.arcgis.geoprocessing.GPServer |
localGPServer
|
| Fields inherited from class com.esri.adf.web.ags.data.gp.AGSGPResource |
endPointURL, generatedAlias, gpServer, resultMapDescription, resultMapResource, resultMapServerInfo, user |
| Fields inherited from class com.esri.adf.web.data.GISResource |
alias, context, defaultSpatialReference, functionalities, init |
| Constructor Summary | |
AGSLocalGPResource()
|
|
AGSLocalGPResource(java.lang.String serverObjectName,
java.util.List hosts,
java.lang.String clusterType,
AGSUser user)
|
|
| Method Summary | |
void |
activate()
This method is called by the associated WebContext when the context itself is being activated. |
void |
addHost(java.lang.String host)
|
java.lang.Object |
createArcObject(java.lang.String progId)
Creates an ArcObject with this progId in the current server context. |
protected void |
createGPServer()
|
protected void |
createResultMapResource()
|
void |
destroy()
The cleanup (final) chores of the resource like releasing held resources must be performed in this method. |
boolean |
equals(java.lang.String resource)
Determines whether the resource string represents this AGSLocalResource. |
java.lang.String |
getAlias()
Returns a reader friendly name for this resource. |
java.lang.String |
getClusterType()
|
java.util.List |
getHosts()
|
com.esri.arcgis.geoprocessing.GPServer |
getLocalGPServer()
|
com.esri.arcgis.server.ServerConnection |
getServerConnection()
Returns the ServerConnection object from the server. |
com.esri.arcgis.server.IServerContext |
getServerContext()
Returns the IServerContext object from the server. |
com.esri.arcgis.server.IServerObjectManager |
getServerObjectManager()
Returns the IServerObjectManager object from the server. |
java.lang.String |
getServerObjectName()
The name of the server object on the GIS server machine. |
AGSUser |
getUser()
|
void |
init(WebContext context)
This method is called by the WebContext to initialize the resource. |
boolean |
isPooled()
Returns an indicator of whether the server object is pooled or not. |
java.lang.Object |
loadObject(java.lang.String xml)
Deserializes the string to a server object by calling the loadObject method on the AGSWebContext. |
void |
passivate()
This method is called by the associated WebContext when the context itself is being passivated. |
java.lang.String |
saveObject(java.lang.Object persistObj)
Serializes a server object to a String. |
void |
setClusterType(java.lang.String clusterType)
|
void |
setHosts(java.util.List hosts)
|
void |
setServerObjectName(java.lang.String serverObjectName)
|
void |
setUser(AGSUser user)
|
| Methods inherited from class com.esri.adf.web.ags.data.gp.AGSGPResource |
getEndPointURL, getGPServer, getResultMapResource, setEndPointURL, setResultMapResource |
| Methods inherited from class com.esri.adf.web.data.GISResource |
addFunctionality, getDefaultSpatialReference, getFunctionalities, getFunctionality, getWebContext, setAlias, setFunctionalities |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected com.esri.arcgis.geoprocessing.GPServer localGPServer
protected AGSLocalConnection delegate
| Constructor Detail |
public AGSLocalGPResource()
public AGSLocalGPResource(java.lang.String serverObjectName,
java.util.List hosts,
java.lang.String clusterType,
AGSUser user)
| Method Detail |
protected void createGPServer()
createGPServer in class AGSGPResourceprotected void createResultMapResource()
createResultMapResource in class AGSGPResourcepublic void init(WebContext context)
GISResource
This method is called by the WebContext to initialize the resource. This is typically called when the
context itself is initialized or when users add a new resource to the context by using the
WebContext#addResource(GISResource) method. A GISResource is usable only after this method has been
called.
This method iterates through all its supported GISFunctionalitys and calls the
GISFunctionality.initFunctionality(GISResource) on them all.
Sub-classes that want to do custom initialization should override this method and make the super
call first before doing the custom stuff:
public void init(WebContext context) {
super.init(context);
myInit();
}
init in interface WebContextInitializeinit in class AGSGPResourcepublic void destroy()
GISResource
The cleanup (final) chores of the resource like releasing held resources must be performed in this method. This is
typically called when the context itself is being destroyed or when users remove this resource from the context by
using the WebContext.removeResource(GISResource) method. A GISResource is unusable after this
method has been called.
This method iterates through all its supported GISFunctionalitys and calls the
GISFunctionality.destroyFunctionality() on them all.
Sub-classes that want to do custom cleanup chores should override this method and do the custom cleanup first
before making the super call:
public void destroy() {
myDestroy();
super.destroy();
}
destroy in interface WebContextInitializedestroy in class AGSGPResourcepublic void activate()
GISResource
This method is called by the associated WebContext when the context itself is being activated. This
typically happens when a new user request is received to perform a set of operations. A GISResource is
available for the execution of these operations only after this method has been called.
This method iterates through all its supported GISFunctionalitys and calls the activate()
method on those functionalities that implement WebLifecycle.
Sub-classes that want to do custom activation should override this method and make the super call
first before doing the custom stuff:
public void activate() {
super.activate();
myActivate();
}
activate in interface WebLifecycleactivate in class AGSGPResourcepublic void passivate()
GISResource
This method is called by the associated WebContext when the context itself is being passivated. This
typically happens after a user request to perform a set of operations has been serviced. A GISResource is
unavailable for the execution of more operations after this method has been called.
This method iterates through all its supported GISFunctionalitys and calls the passivate()
method on those functionalities that implement WebLifecycle.
Sub-classes that want to do custom passivation should override this method and do the custom passivation first
before making the super call:
public void passivate() {
myPassivate();
super.passivate();
}
passivate in interface WebLifecyclepassivate in class AGSGPResourcepublic java.lang.Object createArcObject(java.lang.String progId)
progId - the class id
Object- the ArcObject represented by this progIdpublic java.lang.String saveObject(java.lang.Object persistObj)
persistObj - the object to store
String- a string representation of the objectpublic java.lang.Object loadObject(java.lang.String xml)
AGSWebContext.
xml - the string representation of the server object
Object- the loaded Objectpublic boolean equals(java.lang.String resource)
resource - the resource string
public com.esri.arcgis.geoprocessing.GPServer getLocalGPServer()
public boolean isPooled()
public java.lang.String getAlias()
GISResourceReturns a reader friendly name for this resource.
It is a good practice for users to explicitly set an alias when the resource is created programmatically or declaratively. Resource providers should provide an auto-generated alias anyway in case users don't explicitly set an alias themselves.
getAlias in class GISResourcepublic com.esri.arcgis.server.IServerObjectManager getServerObjectManager()
IServerObjectManager object from the server.
IServerObjectManager- the IServerObjectMananger objectpublic com.esri.arcgis.server.ServerConnection getServerConnection()
ServerConnection object from the server.
ServerConnection- the ServerConnection objectpublic com.esri.arcgis.server.IServerContext getServerContext()
IServerContext object from the server.
IServerContext- the IServerContext objectpublic java.lang.String getServerObjectName()
String- the server object namepublic void setServerObjectName(java.lang.String serverObjectName)
public java.util.List getHosts()
public void setHosts(java.util.List hosts)
public void addHost(java.lang.String host)
public void setUser(AGSUser user)
setUser in class AGSGPResourcepublic AGSUser getUser()
getUser in class AGSGPResourcepublic java.lang.String getClusterType()
public void setClusterType(java.lang.String clusterType)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||