public interface IDfBusinessObject
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getVendorString()
Returns the Copyright statement stored in the implementation class.
|
java.lang.String |
getVersion()
Returns the current version of the business object implementation as a string.
|
boolean |
isCompatible(java.lang.String version)
Checks if this object is compatible with the specified version, often used in conjunction with
supportsFeature(String) . |
boolean |
supportsFeature(java.lang.String feature)
Checks if the specified feature matches an entry in the implementations list of supported features.
|
java.lang.String getVersion()
<major version>.<minor version>
. Example:
"1.0"
.java.lang.String getVendorString()
boolean isCompatible(java.lang.String version)
supportsFeature(String)
.version
- version string of format: <major version>.<minor version>
. Example:
"1.0"
true
if business object type is compatible with the version (false
if
incompatible)supportsFeature(java.lang.String)
,
getVersion()
boolean supportsFeature(java.lang.String feature)
feature
- feature stringtrue
if feature is supported (false
if the feature is not supported)getVersion()
,
isCompatible(java.lang.String)
Copyright 1994-2023 OpenText Corporation. All rights reserved.