| com.sun.jbi.management.JbiNameInfo
All known Subclasses: com.sun.jbi.management.support.JbiNameInfo,
JbiNameInfo | public interface JbiNameInfo (Code) | | JbiNameInfo keeps track of the unique information about a
JBI Framework system service or installed component.
Once instantiated, this object is immutable.
author: Sun Microsystems, Inc. |
Method Summary | |
String | altName() Return the alternative name of a JBI Framework installed component. | boolean | isBinding() True iff this object identifies an SE. | boolean | isEngine() True iff this object identifies an SE. | boolean | isSystemService() True iff this object identifies a JBI Framework System Service. | String | name() Return the name of the JBI Framework Service or Installed component. |
altName | String altName()(Code) | | Return the alternative name of a JBI Framework installed component.
alternative name of the installed component |
isBinding | boolean isBinding()(Code) | | True iff this object identifies an SE.
By definition, isBinding() => !isEngine() && !isSystemService()
true iff object identifies an SE. |
isEngine | boolean isEngine()(Code) | | True iff this object identifies an SE.
By definition, isEngine() => !isBinding() && !isSystemService()
true iff object identifies an SE. |
isSystemService | 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 | String name()(Code) | | Return the name of the JBI Framework Service or Installed component.
name of service or component |
|
|