com.esri.adf.web.aims.data.query
Class AIMSQueryFunctionality

java.lang.Object
  extended bycom.esri.adf.web.data.query.QueryFunctionality
      extended bycom.esri.adf.web.aims.data.query.AIMSQueryFunctionality
All Implemented Interfaces:
GISFunctionality

public class AIMSQueryFunctionality
extends QueryFunctionality


Field Summary
protected  AIMSMapResource aimsMapResource
           
protected  java.util.HashMap layerIds
           
 
Fields inherited from class com.esri.adf.web.data.query.QueryFunctionality
FUNCTIONALITY_NAME, handlers
 
Constructor Summary
AIMSQueryFunctionality()
           
 
Method Summary
protected  WebGeometry convertToWebGeometry(com.esri.aims.mtier.model.acetate.Shape geometry)
           
 void destroyFunctionality()
           The cleanup chores (such as releasing held resources) for the functionality must be performed in this method.
protected  java.lang.String getLayerId(int layerId)
           
 AIMSMapFunctionality getMapFunctionality()
           
 java.util.List getQueryLayers()
           Returns the query-able layers as a List of WebLayerInfo objects.
 GISResource getResource()
           Returns the GISResource associated with this functionality.
 java.lang.String getSpatialFilterRelation()
           
protected  WebLayerInfo getWebLayerInfo(java.lang.String layerId)
           
 void initFunctionality(GISResource resource)
           The initialization chores for the functionality must be performed in this method.
 void setSpatialFilterRelation(java.lang.String spatialFilterRelation)
           
 
Methods inherited from class com.esri.adf.web.data.query.QueryFunctionality
addFindCriteriaHandler, find, getFindCriteriaHandlers, removeFindCriteriaHandler, setFindCriteriaHandlers
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

aimsMapResource

protected AIMSMapResource aimsMapResource

layerIds

protected java.util.HashMap layerIds
Constructor Detail

AIMSQueryFunctionality

public AIMSQueryFunctionality()
Method Detail

initFunctionality

public void initFunctionality(GISResource resource)
Description copied from interface: GISFunctionality

The initialization chores for the functionality must be performed in this method. This method is called by the resource when the functionality needs to be initialized. This happens either when the resource itself is being initialized or if users add this functionality to the resource using the GISResource.addFunctionality(String, GISFunctionality) method after the resource has already been initialized.

Classes which implement this method should maintain the resource as a class instance variable and return the same in the GISFunctionality.getResource() method. The functionality is ready for use only after this method has been called.

Parameters:
resource - the GISResource that this functionality supports
See Also:
GISResource.init(WebContext)

destroyFunctionality

public void destroyFunctionality()
Description copied from interface: GISFunctionality

The cleanup chores (such as releasing held resources) for the functionality must be performed in this method. This method is called by the GISResource when the resource itself is being destroyed.

The functionality is no longer usable after this method has been called.

See Also:
GISResource.destroy()

getQueryLayers

public java.util.List getQueryLayers()
Description copied from class: QueryFunctionality

Returns the query-able layers as a List of WebLayerInfo objects.

Specified by:
getQueryLayers in class QueryFunctionality
Returns:
the query-able layers as a List of WebLayerInfo objects

getResource

public GISResource getResource()
Description copied from interface: GISFunctionality

Returns the GISResource associated with this functionality.

The resource passed to GISFunctionality.initFunctionality(GISResource) is maintained as a class variable and is accessible through this method.

Returns:
the GISResource associated with this functionality

getLayerId

protected java.lang.String getLayerId(int layerId)

getWebLayerInfo

protected WebLayerInfo getWebLayerInfo(java.lang.String layerId)

convertToWebGeometry

protected WebGeometry convertToWebGeometry(com.esri.aims.mtier.model.acetate.Shape geometry)

getSpatialFilterRelation

public java.lang.String getSpatialFilterRelation()

setSpatialFilterRelation

public void setSpatialFilterRelation(java.lang.String spatialFilterRelation)

getMapFunctionality

public AIMSMapFunctionality getMapFunctionality()