Uses of Class
org.forgerock.openig.tools.am.Version
-
Packages that use Version Package Description org.forgerock.openig.tools.am Access Management Server.org.forgerock.openig.types Contains everything commonly used to work withTypeDefinition
. -
-
Uses of Version in org.forgerock.openig.tools.am
Subclasses of Version in org.forgerock.openig.tools.am Modifier and Type Class Description class
AmVersion
Normalized AM version.Methods in org.forgerock.openig.tools.am that return Version Modifier and Type Method Description Version
AmService. getVersion()
Return the version of the configured OpenAM Server.static Version
Version. of(String in)
Parse an input string, decomposing it in its base elements (major, minor, micro).static Version
Version. v(int major)
Builds a version from its components (minor set to0
, micro set to0
, no qualifier).static Version
Version. v(int major, int minor)
Builds a version from its components (micro set to0
, no qualifier).static Version
Version. v(int major, int minor, int micro)
Builds a version from its components.Methods in org.forgerock.openig.tools.am that return types with arguments of type Version Modifier and Type Method Description static Predicate<Version>
Version. between(Version minInclusive, Version maxInclusive)
Returns a predicate that verifies if this version is in between the givenminInclusive
andmaxInclusive
versions (inclusive).static Predicate<Version>
Version. equalTo(Version version)
Returns a predicate that verifies strict equality.static Predicate<Version>
Version. greaterThan(Version version)
Returns a predicate that verifies if this version is strictly greater than the givenversion
.static Predicate<Version>
Version. greaterThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is greater or equal to the givenversion
.static Predicate<Version>
Version. lowerThan(Version version)
Returns a predicate that verifies if this version is strictly lower than the givenversion
.static Predicate<Version>
Version. lowerThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is lower or equal to the givenversion
.static Predicate<Version>
Version. strictlyBetween(Version minExclusive, Version maxExclusive)
Returns a predicate that verifies if this version is in between the givenminExclusive
andmaxExclusive
versions (exclusive).Methods in org.forgerock.openig.tools.am with parameters of type Version Modifier and Type Method Description static AmVersion
AmVersion. am(Version version)
Returns a normalized AM version from the given version.static Predicate<Version>
Version. between(Version minInclusive, Version maxInclusive)
Returns a predicate that verifies if this version is in between the givenminInclusive
andmaxInclusive
versions (inclusive).int
Version. compareTo(Version o)
static AmService.Discovery
AmService. discovery(URI baseUri, Realm realm, String cookieName, Version versionHint, String agentId, SecretReference<GenericSecret> agentPassword, Handler amHandler)
Create an AM Discovery object which will get information from AM upon building.static Predicate<Version>
Version. equalTo(Version version)
Returns a predicate that verifies strict equality.static Predicate<Version>
Version. greaterThan(Version version)
Returns a predicate that verifies if this version is strictly greater than the givenversion
.static Predicate<Version>
Version. greaterThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is greater or equal to the givenversion
.static Predicate<Version>
Version. lowerThan(Version version)
Returns a predicate that verifies if this version is strictly lower than the givenversion
.static Predicate<Version>
Version. lowerThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is lower or equal to the givenversion
.static Predicate<Version>
Version. strictlyBetween(Version minExclusive, Version maxExclusive)
Returns a predicate that verifies if this version is in between the givenminExclusive
andmaxExclusive
versions (exclusive).Method parameters in org.forgerock.openig.tools.am with type arguments of type Version Modifier and Type Method Description boolean
Version. is(Predicate<Version> predicate)
Returnstrue
if this version satisfy the given predicate. -
Uses of Version in org.forgerock.openig.types
Fields in org.forgerock.openig.types with type parameters of type Version Modifier and Type Field Description static org.forgerock.openig.model.type.Syntax<Version>
TypeDefinitions. PRODUCT_VERSION_SYNTAX
The "PRODUCT_VERSION"'sSyntax
.static org.forgerock.openig.model.type.StringTypeDefinition<Version>
TypeDefinitions. PRODUCT_VERSION_TYPE
Represents the "PRODUCT_VERSION" type, which is a String with a specificSyntax
.
-