Package org.jboss.modules.management
Class ResourceLoaderInfo
- java.lang.Object
-
- org.jboss.modules.management.ResourceLoaderInfo
-
public final class ResourceLoaderInfo extends Object
Information about a resource loader.- Author:
- David M. Lloyd
-
-
Constructor Summary
Constructors Constructor Description ResourceLoaderInfo(String type, String location, List<String> paths)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLocation()
Get the resource loader location.List<String>
getPaths()
Get the paths list.String
getType()
Get the type name.
-
-
-
Constructor Detail
-
ResourceLoaderInfo
@ConstructorProperties({"type","location","paths"}) public ResourceLoaderInfo(String type, String location, List<String> paths)
Construct a new instance.- Parameters:
type
- the type namelocation
- the physical location of the resource loader (if any)paths
- the paths list
-
-