com.esri.arcgis.server
Interface IServerObjectExtensionType

All Superinterfaces:
Serializable
All Known Subinterfaces:
IServerObjectExtensionType2, IServerObjectExtensionType3
All Known Implementing Classes:
IServerObjectExtensionType2Proxy, IServerObjectExtensionType3Proxy, IServerObjectExtensionTypeProxy, ServerObjectExtensionType

public interface IServerObjectExtensionType
extends Serializable

Provides access to properties, for administrators, of a server object extension type.

Remarks

The IServerObjectExtensionType interface is a read/write interface on a server object type that allows administrators to configure new server object extension types to add to the server, update existing server object extension types, and to view the properties of a server object extension type.

Users and developers that are not part the the agsadmin group do not have access to this interface. An additional read only interface called IServerObjectExtensionTypeInfo is available to non-administrators which provides read only access to a subset of the server object type's properties.

The set of properties that can be accessed and modified by IServerObjectExtensionType are:

Name: the name of the server object extension

Description: a text description of the server object extension

CLSID: the CLSID of the server object extension

Product Availability

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


Method Summary
 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.
 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.
 

Method Detail

getName

String getName()
               throws IOException,
                      AutomationException
The name of the extension type.

Product Availability

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

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

setName

void setName(String pVal)
             throws IOException,
                    AutomationException
The name of the extension type.

Product Availability

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

Parameters:
pVal - The pVal (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDescription

String getDescription()
                      throws IOException,
                             AutomationException
The description of the extension type.

Product Availability

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

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

setDescription

void setDescription(String desc)
                    throws IOException,
                           AutomationException
The description of the extension type.

Product Availability

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

Parameters:
desc - The desc (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getCLSID

String getCLSID()
                throws IOException,
                       AutomationException
The class ID of the extension type.

Product Availability

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

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

setCLSID

void setCLSID(String pVal)
              throws IOException,
                     AutomationException
The class ID of the extension type.

Product Availability

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

Parameters:
pVal - The pVal (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.