|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.esri.arcgis.server.ServerObjectExtensionType
public class ServerObjectExtensionType
The ServerObjectExtensionType object which provides information about server object extension types to users with administrative privileges to the ArcGIS server.
The ArcGIS Server manages a set of server objects running across one or more host (container) machines. How those server objects are configured and run is defined by a set of server object configurations. Server object configurations can be added, removed and modified by users or developers who are members of the agsadmin users group, and therfore have administrator priviliges on the ArcGIS Server.
A ServerObjectType is the type of a server object. The types of server object configurations, and therefore server objects that can be created on a GIS server is one of a defined set of server object types that a GIS server can support. By default, the supported types are MapServer and GeocodeServer. The server object configuration type defines the types of server object instances that a particular server object configuration starts up and provides to applications to make use of.
The ServerObjectType also defines the set of properties associated with a particular server object configuration that must be specified when creating the configuration. For example, a MapServer requires a map document, a GeocodeServer requires a locator.
You must be connected to the GIS server as an administrator to access ServerType objects. A subset of properties of a ServerObjectType are available to non administators via the ServerObjectTypeInfo object.
| Constructor Summary | |
|---|---|
ServerObjectExtensionType(Object obj)
Construct a ServerObjectExtensionType using a reference to such an object returned from ArcGIS Engine or Server. |
|
| Method Summary | |
|---|---|
boolean |
equals(Object o)
Compare this object with another |
String |
getCLSID()
The class ID of the extension type. |
String |
getDescription()
The description of the extension type. |
String |
getName()
The name of the extension type. |
int |
hashCode()
the hashcode for this object |
void |
setCLSID(String pVal)
The class ID of the extension type. |
void |
setDescription(String desc)
The description of the extension type. |
void |
setName(String pVal)
The name of the extension type. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef |
|---|
getJintegraDispatch, release |
| Constructor Detail |
|---|
public ServerObjectExtensionType(Object obj)
throws IOException
obj to ServerObjectExtensionType. *
ServerObjectExtensionType o = (ServerObjectExtensionType)obj; // will not work
ServerObjectExtensionType o = new ServerObjectExtensionType(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException - if there are interop problems
ServerObjectExtensionType theServerObjectExtensionType = (ServerObjectExtensionType) obj;| Method Detail |
|---|
public boolean equals(Object o)
equals in class Objectpublic int hashCode()
hashCode in class Object
public String getName()
throws IOException,
AutomationException
getName in interface IServerObjectExtensionTypeIOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void setName(String pVal)
throws IOException,
AutomationException
setName in interface IServerObjectExtensionTypepVal - The pVal (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public String getDescription()
throws IOException,
AutomationException
getDescription in interface IServerObjectExtensionTypeIOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void setDescription(String desc)
throws IOException,
AutomationException
setDescription in interface IServerObjectExtensionTypedesc - The desc (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public String getCLSID()
throws IOException,
AutomationException
getCLSID in interface IServerObjectExtensionTypeIOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void setCLSID(String pVal)
throws IOException,
AutomationException
setCLSID in interface IServerObjectExtensionTypepVal - The pVal (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||