public interface ConvergenceName
The ConvergenceName
interface provides an SBB and SBB part with access to the convergence name that the root SBB of an SBB entity tree was created for.
Modifier and Type | Method and Description |
---|---|
Address |
getAddress()
Get the Address that was used during the construction of the convergence name.
|
String |
getConvergenceName()
Get a string representation of the computed convergence name.
|
String |
getCustomName()
Get the custom name that was used during the construction of the convergence name.
|
boolean |
isActivityContextSelected()
Determine if the Activity Context was selected for use in the convergence name.
|
boolean |
isAddressProfileSelected()
Determine if the Address Profile was selected for use in the convergence name.
|
boolean |
isAddressSelected()
Determine if the Address was selected for use in the convergence name.
|
boolean |
isEventSelected()
Determine if the event was selected for use in the convergence name.
|
boolean |
isEventTypeSelected()
Determine if the event type was selected for use in the convergence name.
|
boolean isActivityContextSelected()
Determine if the Activity Context was selected for use in the convergence name.
true
if the Activity Context was selected for use in the convergence name, false
otherwise.boolean isAddressProfileSelected()
Determine if the Address Profile was selected for use in the convergence name.
Note: an Address Profile will only be used in the construction of a convergence name if this method returns true
and getAddress
returns a non-null value.
true
if the Address Profile was selected for use in the convergence name, false
otherwise.boolean isAddressSelected()
Determine if the Address was selected for use in the convergence name.
Note: Addresses will only be used during the construction of a convergence name if this method returns true
and getAddress
returns a non-null value.
true
if the Address was selected for use in the convergence name, false
otherwise.boolean isEventTypeSelected()
Determine if the event type was selected for use in the convergence name.
true
if the event type was selected for use in the convergence name, false
otherwise.boolean isEventSelected()
Determine if the event was selected for use in the convergence name.
true
if the event was selected for use in the convergence name, false
otherwise.Address getAddress()
Get the Address that was used during the construction of the convergence name.
null
if no address was set.String getCustomName()
Get the custom name that was used during the construction of the convergence name.
null
if no custom name was set.String getConvergenceName()
Get a string representation of the computed convergence name.
This format of this string is vendor-specific.
A string value returned from this method will only be equal to a string value returned from the same method in some other ConvergenceName
object if the two ConvergenceName
objects represent exactly the same convergence name.