Uses of Interface
com.evolveum.axiom.reactor.Dependency
-
Packages that use Dependency Package Description com.evolveum.axiom.lang.impl com.evolveum.axiom.reactor -
-
Uses of Dependency in com.evolveum.axiom.lang.impl
Classes in com.evolveum.axiom.lang.impl that implement Dependency Modifier and Type Class Description class
ItemContext<V>
class
MapItemContext<V>
class
ValueActionImpl<V>
class
ValueContext<V>
Methods in com.evolveum.axiom.lang.impl with type parameters of type Dependency Modifier and Type Method Description <V,X extends Dependency<V>>
XAxiomStatementRule.ActionBuilder. require(X req)
<V,X extends Dependency<V>>
XValueActionImpl. require(X req)
Methods in com.evolveum.axiom.lang.impl that return Dependency Modifier and Type Method Description <T> Dependency<AxiomItem<T>>
AxiomStatementRule.Lookup. child(AxiomName item, Class<T> valueType)
<T> Dependency<AxiomItem<T>>
AxiomStatementRule.Lookup. child(AxiomItemDefinition item, Class<T> valueType)
Dependency<V>
AxiomStatementRule.Lookup. finalValue()
Dependency<AxiomValueContext<?>>
AxiomStatementRule.Lookup. modify()
Dependency<AxiomValueContext<?>>
AxiomStatementRule.Lookup. modify(AxiomName identifierSpace, AxiomValueIdentifier identifier)
Dependency<NamespaceContext>
AxiomStatementRule.Lookup. namespace(AxiomName name, AxiomValueIdentifier namespaceId)
Dependency<NamespaceContext>
ModelReactorContext. namespace(AxiomName name, AxiomValueIdentifier namespaceId)
<T> Dependency<AxiomValue<T>>
AxiomStatementRule.Lookup. onlyItemValue(AxiomItemDefinition item, Class<T> valueType)
Dependency<AxiomValue<V>>
ItemContext. onlyValue0()
Dependency<AxiomValue<?>>
AxiomStatementRule.ActionBuilder. require(AxiomValueContext<?> ext)
Dependency<AxiomValue<?>>
ValueActionImpl. require(AxiomValueContext<?> ext)
Methods in com.evolveum.axiom.lang.impl that return types with arguments of type Dependency Modifier and Type Method Description Collection<Dependency<?>>
ValueActionImpl. dependencies()
Collection<Dependency<?>>
ValueActionImpl. requirements()
-
Uses of Dependency in com.evolveum.axiom.reactor
Subinterfaces of Dependency in com.evolveum.axiom.reactor Modifier and Type Interface Description interface
Action<E extends Exception>
interface
DependantAction<E extends Exception>
static interface
Dependency.Search<T>
Classes in com.evolveum.axiom.reactor that implement Dependency Modifier and Type Class Description class
AbstractDependency<V>
class
DelegatedDependency<T>
static class
Dependency.Immediate<V>
static class
Dependency.OptionalDep<T>
static class
Dependency.Suppliable<V>
static class
Dependency.Unsatified<V>
class
FlatMapDependency<I,O>
class
MapDependency<I,O>
class
RetriableDependency<T>
Methods in com.evolveum.axiom.reactor that return Dependency Modifier and Type Method Description static <T> Dependency<T>
Dependency. deffered(Dependency<T> original)
default <R> Dependency<R>
Dependency. flatMap(Function<T,Dependency<R>> map)
static <T> Dependency<T>
Dependency. from(Supplier<T> supplier)
static <T> Dependency<T>
Dependency. from(Optional<T> maybe)
static <T> Dependency<T>
Dependency. fromNullable(T value)
static <T> Dependency<T>
Dependency. immediate(T value)
default <R> Dependency<R>
Dependency. map(Function<T,R> map)
static <T> Dependency<T>
Dependency. of(T from)
static <T> Dependency<T>
Dependency. optional(Dependency<T> dependency)
static <T> Dependency<T>
Dependency. orNull(T value)
Dependency<V>
AbstractDependency. unsatisfied(Supplier<? extends Exception> unsatisfiedMessage)
static <T> Dependency<T>
Dependency. unsatisfied()
default Dependency<T>
Dependency. unsatisfied(Supplier<? extends Exception> unsatisfiedMessage)
Methods in com.evolveum.axiom.reactor that return types with arguments of type Dependency Modifier and Type Method Description Collection<Dependency<?>>
DependantAction. dependencies()
Methods in com.evolveum.axiom.reactor with parameters of type Dependency Modifier and Type Method Description static <T> Dependency<T>
Dependency. deffered(Dependency<T> original)
static <T> Dependency<T>
Dependency. optional(Dependency<T> dependency)
Method parameters in com.evolveum.axiom.reactor with type arguments of type Dependency Modifier and Type Method Description static boolean
Dependency. allSatisfied(Collection<? extends Dependency<?>> outstanding)
default <R> Dependency<R>
Dependency. flatMap(Function<T,Dependency<R>> map)
static <T> Dependency.Search<T>
Dependency. retriableDelegate(Supplier<Dependency<T>> lookup)
Constructors in com.evolveum.axiom.reactor with parameters of type Dependency Constructor Description FlatMapDependency(Dependency<I> delegate, Function<I,Dependency<O>> mapping)
MapDependency(Dependency<I> delegate, Function<I,O> mapping)
OptionalDep(Dependency<T> delegate)
Constructor parameters in com.evolveum.axiom.reactor with type arguments of type Dependency Constructor Description FlatMapDependency(Dependency<I> delegate, Function<I,Dependency<O>> mapping)
RetriableDependency(Supplier<Dependency<T>> lookup)
-