| java.lang.Object com.sun.jbi.management.support.JbiNameInfo
Method Summary | |
public String | altName() Return the alternative name of a JBI Framework installed component. | public boolean | isBinding() True iff this object identifies an SE. | public boolean | isEngine() True iff this object identifies an SE. | public boolean | isSystemService() True iff this object identifies a JBI Framework System Service. | public String | name() Return the name of the JBI Framework Service or Installed component. |
JbiNameInfo | public JbiNameInfo(String aServiceName)(Code) | | Constructs a JbiNameInfo .
This version of the constructor creates a system service name object.
|
JbiNameInfo | public JbiNameInfo(String aComponentName, boolean isBinding)(Code) | | Constructs a JbiNameInfo .
This version of the constructor creates an installed component name object.
|
JbiNameInfo | public JbiNameInfo(String aComponentName, String aComponentAlias, boolean isBinding)(Code) | | Constructs a JbiNameInfo .
This version of the constructor creates an installed component name object.
|
altName | public String altName()(Code) | | Return the alternative name of a JBI Framework installed component.
alternative name of the installed component |
isBinding | public boolean isBinding()(Code) | | True iff this object identifies an SE.
By definition, isBinding() => !isEngine() && !isSystemService()
true iff object identifies an SE. |
isEngine | public boolean isEngine()(Code) | | True iff this object identifies an SE.
By definition, isEngine() => !isBinding() && !isSystemService()
true iff object identifies an SE. |
isSystemService | public boolean isSystemService()(Code) | | True iff this object identifies a JBI Framework System Service.
By definition, isSystemService() => !isEngine() && !isBinding()
true iff object identifies an JBI Framework System Service. |
name | public String name()(Code) | | Return the name of the JBI Framework Service or Installed component.
name of service or component |
|
|