FileDocCategorySizeDatePackage
SunResourcesXML.javaAPI DocGlassfish v2 API2836Fri May 04 22:35:16 BST 2007com.sun.enterprise.resource

SunResourcesXML

public class SunResourcesXML extends Object
This class encapsulates the information of a sun-resources.xml packaged inside an application.

Fields Summary
private String
xmlPath
the relative path of this sun-resources.xml to the application root
private List
resourcesList
the parsed resources list from this sun-resources.xml
Constructors Summary
public SunResourcesXML(String xPath, List rList)

        xmlPath = xPath;
        resourcesList = rList;
    
Methods Summary
public java.util.ListgetResourcesList()

        return resourcesList;
    
public java.lang.StringgetXMLPath()

        return xmlPath;
    
public voidsetResourcesList(java.util.List rList)

        resourcesList = rList;
    
public voidsetXMLPath(java.lang.String xPath)

        xmlPath = xPath;