Package com.basis.api.admin.client
Class BBjAdminLicenseFeatureInfo
java.lang.Object
com.basis.api.admin.client.BBjAdminLicenseFeatureInfo
- All Implemented Interfaces:
Serializable
Deprecated.
This class contains the licensing information and does not have a server side implementation so that it does not make any calls back to the server from the client. While there are setter methods, these are only used internally by the server to populate the object. Do not call these methods from your code.
BBj Sample
use com.basis.api.admin.BBjAdminFactory
use com.basis.api.admin.BBjAdminBase
use com.basis.api.admin.BBjAdminLicenseFeatureInfo
...
declare BBjAdminBase api!
api! = BBjAdminFactory.getBBjAdmin("admin", "mypassword")
featureIterator! = api!.getAllLicenseFeatureInfo().iterator()
while featureIterator!.hasNext()
featureInfo! = featureIterator!.next()
print featureInfo!.getFeature(), featureInfo!.getExpiration(), str(featureInfo!.getNumberInUse()
wend
...
api!.release()
- Since:
- 18.00
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Deprecated.static BBjAdminLicenseFeatureInfo
getInstance
(String p_featureInfo) Deprecated.Users should never create instances of this class.int
Deprecated.Deprecated.int
Deprecated.Deprecated.Deprecated.void
setExpiration
(String p_expiration) Deprecated.void
setFeature
(String p_feature) Deprecated.void
setNumberInUse
(int p_numberInUse) Deprecated.void
setSerialNumber
(String p_serialNumber) Deprecated.void
setTotalUserCount
(int p_totalUserCount) Deprecated.void
setVendorString
(String p_vendorString) Deprecated.void
setVersion
(String p_version) Deprecated.
-
Constructor Details
-
BBjAdminLicenseFeatureInfo
public BBjAdminLicenseFeatureInfo()Deprecated.
-
-
Method Details
-
getInstance
Deprecated.Users should never create instances of this class. Format of the string is:| | | | | | - Parameters:
p_featureInfo
-- Throws:
BBjAdminException
-
getFeature
Deprecated. -
setFeature
Deprecated. -
getSerialNumber
Deprecated. -
setSerialNumber
Deprecated. -
getTotalUserCount
public int getTotalUserCount()Deprecated. -
setTotalUserCount
public void setTotalUserCount(int p_totalUserCount) Deprecated. -
getNumberInUse
public int getNumberInUse()Deprecated. -
setNumberInUse
public void setNumberInUse(int p_numberInUse) Deprecated. -
getExpiration
Deprecated. -
setExpiration
Deprecated. -
getVendorString
Deprecated. -
setVendorString
Deprecated. -
getVersion
Deprecated. -
setVersion
Deprecated.
-