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 classAmVersionNormalized AM version.Methods in org.forgerock.openig.tools.am that return Version Modifier and Type Method Description VersionAmService. getVersion()Return the version of the configured OpenAM Server.static VersionVersion. of(String in)Parse an input string, decomposing it in its base elements (major, minor, micro).static VersionVersion. v(int major)Builds a version from its components (minor set to0, micro set to0, no qualifier).static VersionVersion. v(int major, int minor)Builds a version from its components (micro set to0, no qualifier).static VersionVersion. 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 givenminInclusiveandmaxInclusiveversions (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 givenminExclusiveandmaxExclusiveversions (exclusive).Methods in org.forgerock.openig.tools.am with parameters of type Version Modifier and Type Method Description static AmVersionAmVersion. 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 givenminInclusiveandmaxInclusiveversions (inclusive).intVersion. compareTo(Version o)static AmService.DiscoveryAmService. 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 givenminExclusiveandmaxExclusiveversions (exclusive).Method parameters in org.forgerock.openig.tools.am with type arguments of type Version Modifier and Type Method Description booleanVersion. is(Predicate<Version> predicate)Returnstrueif 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_SYNTAXThe "PRODUCT_VERSION"'sSyntax.static org.forgerock.openig.model.type.StringTypeDefinition<Version>TypeDefinitions. PRODUCT_VERSION_TYPERepresents the "PRODUCT_VERSION" type, which is a String with a specificSyntax.
-