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 replacementProvides aPathElement.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default 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 booleanisWildcard()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.
-
-
-
Method Detail
-
getKey
default String 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
default String 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.
-
-