com.esri.aims.mtier.model.map.output
Class Output

java.lang.Object
  |
  +--com.esri.aims.mtier.model.map.output.Output
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ExtractOutput, LayoutOutput, LegendOutput, MapOutput

public abstract class Output
extends Object
implements Serializable

Implements an abstract Output object.

See Also:
Serialized Form

Constructor Summary
Output()
          Constructs an instance of an Output object.
 
Method Summary
 String getOutputURL()
          Returns the request output URL associated with this Output object.
abstract  String getType()
          Returns the type of Output object as name string.
 String getURL()
          Returns the response URL associated with this Output object.
 void setOutputURL(String value)
          Sets the request URL value associated with this Output object.
 void setURL(String value)
          Deprecated. As of ArcIMS 4.0.1, replaced by setOutputURL(java.lang.String)
 void setURL(String value, boolean isFromResponse)
          Sets the URL value associated with this Output object based on request or response type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Output

public Output()
Constructs an instance of an Output object. Example:
Output output = new Output();

Method Detail

setURL

public void setURL(String value)
Deprecated. As of ArcIMS 4.0.1, replaced by setOutputURL(java.lang.String)

Sets the request URL value associated with this Output object. Example:
output.setURL("http://www.abcmaps.com/images/myimage.jpg");

Parameters:
value - the URL value.
See Also:
getURL()

setURL

public void setURL(String value,
                   boolean isFromResponse)
Sets the URL value associated with this Output object based on request or response type. Example:
output.setURL("http://www.abcmaps.com/images/myimage.jpg", true);

Parameters:
value - the URL value.
isFromResponse - flag whether from request or response.
See Also:
getURL()

getURL

public String getURL()
Returns the response URL associated with this Output object. Example:
String url = output.getURL();

Returns:
String

setOutputURL

public void setOutputURL(String value)
Sets the request URL value associated with this Output object. Example:
output.setOutputURL("http://www.abcmaps.com/images/myimage.jpg");

Parameters:
value - the URL value.
See Also:
#getRequestURL

getOutputURL

public String getOutputURL()
Returns the request output URL associated with this Output object. Example:
String url = output.getOutputURL();

Returns:
String

getType

public abstract String getType()
Returns the type of Output object as name string.