FileDocCategorySizeDatePackage
ASSessionProperty.javaAPI DocGlassfish v2 API5068Fri May 04 22:35:18 BST 2007com.sun.enterprise.tools.verifier.tests.web.ias

ASSessionProperty

public class ASSessionProperty extends WebTest implements WebCheck

Fields Summary
Constructors Summary
Methods Summary
public Resultcheck(com.sun.enterprise.deployment.WebBundleDescriptor descriptor)



	Result result = getInitializedResult();
	WebComponentNameConstructor compName = new WebComponentNameConstructor(descriptor);

        boolean oneFailed = false;
        boolean notApp = false;
        SessionConfig sessionConfig = getSessionConfig(descriptor);
        SessionProperties sessionProp=null;

        WebProperty[] SPwebProps=null;

        if(sessionConfig !=null){
            sessionProp = sessionConfig.getSessionProperties();
            if (sessionProp!=null)
                SPwebProps=sessionProp.getWebProperty();
        }

        //System.out.println(">>>>>>>>>>>>checking for res " +webProps);
	if (sessionConfig!=null && sessionProp !=null && SPwebProps!=null && SPwebProps.length !=0 ) {

            if(ASWebProperty.checkWebProperties(SPwebProps,result ,descriptor, this )){
                  oneFailed=true;
                  result.failed(smh.getLocalString
                                (getClass().getName() + ".failed",
                                "FAILED [AS-WEB session-config] session-properties - Atleast one name/value pair is not valid in [ {0} ].",
                                new Object[] {descriptor.getName()}));
            }

        } else {
            notApp = true;
        }
            //System.out.println("There are no resource references defined within the ias-web archive");
        if(notApp) {
	    result.notApplicable(smh.getLocalString
				 (getClass().getName() + ".notApplicable",
				  "NOT APPLICABLE [AS-WEB session-config] session-properties element(s) not defined in the web archive [ {0} ].",
				  new Object[] {descriptor.getName()}));
        }

        if (oneFailed) {
            result.setStatus(Result.FAILED);
        } else if(notApp) {
            result.setStatus(Result.NOT_APPLICABLE);
        }else {
            result.setStatus(Result.PASSED);
            result.passed
		    (smh.getLocalString
                    (getClass().getName() + ".passed",
                    "PASSED [AS-WEB session-config] session-properties element(s) are valid within the web archive [ {0} ].",
                    new Object[] {descriptor.getName()} ));
        }
	return result;
    
public SessionConfiggetSessionConfig(com.sun.enterprise.deployment.WebBundleDescriptor descriptor)

        return descriptor.getIasWebApp().getSessionConfig();