Interface SenInformation
-
- All Known Implementing Classes:
SimpleSenInformation
public interface SenInformation
Provides information about the Support Entitlement Number (SEN) of a test licence.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getSen()
Retrieves the SEN if known and present, null if not known or missing.boolean
isMissing()
Returns true if the license is known to have no SEN.boolean
isUnknown()
Returns true if SEN information about this license is known.
-
-
-
Method Detail
-
isUnknown
boolean isUnknown()
Returns true if SEN information about this license is known. Returning false means the the license may or may not have a SEN, but it isn't recorded in the test-system.
-
isMissing
boolean isMissing()
Returns true if the license is known to have no SEN.
-
getSen
String getSen()
Retrieves the SEN if known and present, null if not known or missing.
-
-