|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CSSConfiguredProviderIF
This interface will provider details of each configured provider name, initialization status and current status.
Sample use of the application:
CSSConfiguredProviderIF[] providers = CSSSystem.getManager().getAllConfiguredProviders();
for(int i=0; i< providers.length; i++){
System.out.println("provider name :: "+providers[i].getProviderName());
System.out.println("Initialization status isInitialized :: "+providers[i].isInitialized());
System.out.println("current status isAlive :: "+providers[i].isAlive());
}
Method Summary | |
---|---|
java.lang.String |
getProviderName()
This will return the name of the provider |
boolean |
isAlive(java.util.Map context)
this will return current status of the provider |
boolean |
isInitialized()
this will return initialization status of the provider |
Method Detail |
---|
java.lang.String getProviderName()
boolean isInitialized()
boolean isAlive(java.util.Map context)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |