Package | Description |
---|---|
org.forgerock.openig.tools.am |
Access Management Server.
|
Modifier and Type | Class and Description |
---|---|
class |
AmVersion
Normalized AM version.
|
Modifier and Type | Method and 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 to
0 , micro set to 0 , no qualifier). |
static Version |
Version.v(int major,
int minor)
Builds a version from its components (micro set to
0 , no qualifier). |
static Version |
Version.v(int major,
int minor,
int micro)
Builds a version from its components.
|
Modifier and Type | Method and Description |
---|---|
static Predicate<Version> |
Version.between(Version minInclusive,
Version maxInclusive)
Returns a predicate that verifies if this version is in between
the given
minInclusive and maxInclusive 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 given
version . |
static Predicate<Version> |
Version.greaterThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is greater or equal to the given
version . |
static Predicate<Version> |
Version.lowerThan(Version version)
Returns a predicate that verifies if this version is strictly lower than the given
version . |
static Predicate<Version> |
Version.lowerThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is lower or equal to the given
version . |
static Predicate<Version> |
Version.strictlyBetween(Version minExclusive,
Version maxExclusive)
Returns a predicate that verifies if this version is in between
the given
minExclusive and maxExclusive versions (exclusive). |
Modifier and Type | Method and 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 given
minInclusive and maxInclusive versions (inclusive). |
int |
Version.compareTo(Version o) |
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 given
version . |
static Predicate<Version> |
Version.greaterThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is greater or equal to the given
version . |
static Predicate<Version> |
Version.lowerThan(Version version)
Returns a predicate that verifies if this version is strictly lower than the given
version . |
static Predicate<Version> |
Version.lowerThanOrEqualTo(Version version)
Returns a predicate that verifies if this version is lower or equal to the given
version . |
static Predicate<Version> |
Version.strictlyBetween(Version minExclusive,
Version maxExclusive)
Returns a predicate that verifies if this version is in between
the given
minExclusive and maxExclusive versions (exclusive). |
AmService.Builder |
AmService.Builder.version(Version version)
Set the version and returns this builder.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Version.is(Predicate<Version> predicate)
Returns
true if this version satisfy the given predicate. |
Copyright 2011-2017 ForgeRock AS.