Interface PathAddressTransformer
-
- All Known Implementing Classes:
PathAddressTransformer.BasicPathAddressTransformer,PathAddressTransformer.ReplaceElementKey
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface PathAddressTransformer
A path address transformation step. This specific type of transformer get registered alongside a resource transformer entry and can be used to transform the PathAddress for operation and resource transformations. In general this transformer is only responsible for changing the current PathElement and the delegate to other address transformers in the chain using PathAddressTransformer.Builder.next(org.jboss.as.controller.PathElement...).- Author:
- Emanuel Muckenhuber
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPathAddressTransformer.BasicPathAddressTransformerstatic interfacePathAddressTransformer.Builderstatic classPathAddressTransformer.BuilderImplstatic classPathAddressTransformer.ReplaceElementKey
-
Field Summary
Fields Modifier and Type Field Description static PathAddressTransformerDEFAULT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PathAddresstransform(PathElement current, PathAddressTransformer.Builder builder)Transform an address.
-
-
-
Field Detail
-
DEFAULT
static final PathAddressTransformer DEFAULT
-
-
Method Detail
-
transform
PathAddress transform(PathElement current, PathAddressTransformer.Builder builder)
Transform an address.- Parameters:
current- the current path elementbuilder- the address builder- Returns:
- the path address
-
-