com.esri.arcgis.server
Interface IServerObjectTypeInfo

All Superinterfaces:
Serializable
All Known Subinterfaces:
IServerObjectTypeInfo2, IServerObjectTypeInfo3
All Known Implementing Classes:
IServerObjectTypeInfo2Proxy, IServerObjectTypeInfo3Proxy, IServerObjectTypeInfoProxy, ServerObjectTypeInfo

public interface IServerObjectTypeInfo
extends Serializable

Provides access to properties of a server object type.

Remarks

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.

Users and developers who are not administrators also need access to the list of server object types and the set of their properties that are necessary for programming applications with them. Users that are members of the agsusers user group, but are not members of the agsadmin user group can get information about server object types using the GetTypeInfos method on IServerObjectManager to get the IServerObjectTypeInfo interface.

IServerObjectTypeInfo provides read only access to a subset of the server object type's properties. These properties include:

Name: the name of the server object type (e.g., MapServer, GeocodeServer)

Description: the description of the server object type

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 String getDescription()
          Description of the server object type.
 String getName()
          Name of the server object type.
 

Method Detail

getName

String getName()
               throws IOException,
                      AutomationException
Name of the server object type.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Returns:
The name
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDescription

String getDescription()
                      throws IOException,
                             AutomationException
Description of the server object type.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Returns:
The desc
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.