| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--com.iplanet.am.sdk.AMEntityType
This class defines a supported managed object type by  AM SDK 
 It defines the name, type, service name of the object. A set of the supported
 types can be obtained by using the class AMStoreConnection:
 	AMStoreConnection amsc = new AMStoreConnection(ssotoken);
	Set supportedTypes = amsc.getSupportedTypes();
	Iterator it = supportedTypes.iterator();
	while (it.hasNext()) {
		AMEntityType thisType = (AMEntityType) it.next();
		// Do stuff with AMEntityType
	}
| Method Summary | |
|  java.lang.String | getName()Returns the name of the entity | 
|  java.lang.String | getSearchTemplate()Returns the search template name | 
|  java.lang.String | getServiceName()Returns the service name to be used to display entity profile | 
|  ServiceSchemaManager | getServiceSchemaManager(SSOToken token)Returns the schema manager for the service defined to display this profile in the console. | 
|  int | getType()Returns the integer type of the entity | 
|  java.lang.String | toString()Returns a string representation of this Entity. | 
| Methods inherited from class java.lang.Object | 
| equals, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Method Detail | 
public java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String getName()
public int getType()
public java.lang.String getServiceName()
public ServiceSchemaManager getServiceSchemaManager(SSOToken token)
                                             throws AMException,
                                                    SSOException
token - Single sign on token of the userAMException - If unable to obtain the service schema, or if schema
 is not defined.SSOException - if the single sign on token of user is invalid.public java.lang.String getSearchTemplate()
| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||