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