FileDocCategorySizeDatePackage
GenericContainer.javaAPI DocGlassfish v2 API3031Fri May 04 22:35:10 BST 2007com.sun.enterprise.tools.upgrade.transform.elements

GenericContainer

public class GenericContainer extends GenericElement
author
prakash

Fields Summary
Constructors Summary
public GenericContainer()
Creates a new instance of Element

    
Methods Summary
public java.util.ListgetNonTransferList(org.w3c.dom.Element element)
element - ejb-container or we-container or mdb-container parentSource - server - parent of ejb-container parentResult - domain in case of as7x, config in case of as80

        String containerTagName = element.getTagName();
        java.util.Vector notToTransferAttrList = null;
        if(containerTagName.equals("ejb-container")){
            notToTransferAttrList = new java.util.Vector();
            notToTransferAttrList.add("session-store");
            //notToTransferAttrList.add("max-pool-size");
        }
        return notToTransferAttrList;