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 Type
    Method
    Description
    default String
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convenience method returning the key of the provided path.
    default String
    Deprecated, for removal: This API element is subject to removal in a future version.
    Convenience method returning the value of the provided path.
    default boolean
    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.

    Methods inherited from interface java.util.function.Supplier

    get
  • Method Details

    • 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.