Class Resource
java.lang.Object
org.wildfly.plugin.deployment.resource.Resource
Defines a resource.
- Author:
- James R. Perkins
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe address for the resource.The properties for the resource.Resource[]
Returns an array of resources that depend on this resource.boolean
Whether or not we should add only if the resource is absent.
-
Constructor Details
-
Resource
public Resource()Default constructor.
-
-
Method Details
-
getAddress
The address for the resource.- Returns:
- the address.
-
isAddIfAbsent
public boolean isAddIfAbsent()Whether or not we should add only if the resource is absent.- Returns:
true
if the resource should only be added if it does not already exist, otherwisefalse
.
-
getProperties
The properties for the resource. If no properties were defined an empty map is returned.- Returns:
- the properties.
-
getResources
Returns an array of resources that depend on this resource. Note all sub-resources will be ignored if theisAddIfAbsent()
is defined and his resource is already defined.- Returns:
- an array of resources that depend on this resource or
null
if there are no child resources.
-