Package org.wildfly.subsystem.resource
Interface PathElementProvider
- All Superinterfaces:
Supplier<org.jboss.as.controller.PathElement>
@Deprecated(forRemoval=true,
since="26.0.0")
public interface PathElementProvider
extends Supplier<org.jboss.as.controller.PathElement>
Deprecated, for removal: This API element is subject to removal in a future version.
To be removed without replacement
Provides a
PathElement.- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptiondefault StringgetKey()Deprecated, for removal: This API element is subject to removal in a future version.Convenience method returning the key of the provided path.default StringgetValue()Deprecated, for removal: This API element is subject to removal in a future version.Convenience method returning the value of the provided path.default booleanDeprecated, for removal: This API element is subject to removal in a future version.Convenience method indicating whether or not the provided path uses a "*" value.
-
Method Details
-
getKey
Deprecated, for removal: This API element is subject to removal in a future version.Convenience method returning the key of the provided path.- Returns:
- the path key
-
getValue
Deprecated, for removal: This API element is subject to removal in a future version.Convenience method returning the value of the provided path.- Returns:
- the path value
-
isWildcard
default boolean isWildcard()Deprecated, for removal: This API element is subject to removal in a future version.Convenience method indicating whether or not the provided path uses a "*" value.- Returns:
- true, if the provided path uses a "*" value, false otherwise.
-