|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.esri.arcgis.server.ServerObjectExtensionTypeInfo
public class ServerObjectExtensionTypeInfo
The ServerObjectExtensionTypeInfo object which provides information about server object extension types to users without administrative privileges to the ArcGIS server.
The ServerObjectExtensionTypeInfo class gives users and developers who are not administrators access to the list of server object extension types and the set of their properties that are necessary for programming applications with them. You can get information about server object extension types using the GetExtensionTypeInfos method on IServerObjectManager2 to get the ServerObjectExtensionTypeInfos .
These objects support the IServerObjectExtensionTypeInfo interface which provides read–only access to a subset of the server object extension type's properties. These properties include:
Name: the name of the server object extension type (e.g., OGCWebService)
Description: the description of the server object extension type
| Constructor Summary | |
|---|---|
ServerObjectExtensionTypeInfo(Object obj)
Construct a ServerObjectExtensionTypeInfo 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 |
getDescription()
The description of the extension type. |
String |
getDisplayName()
Display name of the server object extension type. |
String |
getName()
The name of the extension type. |
int |
hashCode()
the hashcode for this object |
| 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 ServerObjectExtensionTypeInfo(Object obj)
throws IOException
obj to ServerObjectExtensionTypeInfo. *
ServerObjectExtensionTypeInfo o = (ServerObjectExtensionTypeInfo)obj; // will not work
ServerObjectExtensionTypeInfo o = new ServerObjectExtensionTypeInfo(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException - if there are interop problems
ServerObjectExtensionTypeInfo theServerObjectExtensionTypeInfo = (ServerObjectExtensionTypeInfo) 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 IServerObjectExtensionTypeInfoIOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public String getDescription()
throws IOException,
AutomationException
getDescription in interface IServerObjectExtensionTypeInfoIOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public String getDisplayName()
throws IOException,
AutomationException
getDisplayName in interface IServerObjectExtensionTypeInfo2IOException - 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 | ||||||||