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

ASCache

public class ASCache 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;
        String maxEntries=null;
        String timeout=null;
        int intMaxEntries;
        //<addition author="irfan@sun.com" [bug/rfe]-id="4705988" >
        //int intTimeout;
        long longTimeout;
        //</addition>

        Cache cache = getCache(descriptor);

	if (cache != null) {

                // <addition> srini@sun.com Bug : 4702284                
		//maxEntries = cache.getAttributeValue("MaxEntries");
                //timeout = cache.getAttributeValue("Timeout");            
                maxEntries = cache.getAttributeValue("max-entries");
                timeout = cache.getAttributeValue("timeout-in-seconds");
                // </addition>
                boolean validMaxEntriesValue=true;
                boolean validTimeOutValue=true;

                try{
                      if(maxEntries !=null && maxEntries.length() != 0){ // check maxEntries.length() != 0 because is IMPLIED att
                        intMaxEntries=Integer.parseInt(maxEntries);

                        if(intMaxEntries >0 && intMaxEntries < Integer.MAX_VALUE)
                          validMaxEntriesValue=true;
                        else
                          validMaxEntriesValue=false;

                      }

                } catch(NumberFormatException exception){
                    validMaxEntriesValue=false;
                    if (!oneFailed)
                        oneFailed = true;

                }

                if(validMaxEntriesValue){
                    result.passed(smh.getLocalString
					  (getClass().getName() + ".passed",
					   "PASSED [AS-WEB cache] max-entries [ {0} ] defined properly.",
					   new Object[] {maxEntries}));
                }else{
                    result.failed(smh.getLocalString
                                      (getClass().getName() + ".failed",
                                      "FAILED [AS-WEB cache] max-entries [ {0} ], attribute must be a proper integer value. "+
                                      "Its range should be 1 to MAX_INT.",
                                      new Object[] {maxEntries}));
                    oneFailed = true;
                }

                try{
                    //<addition author="irfan@sun.com" [bug/rfe]-id="4705988" >
                      /*if(timeout  != null && timeout.length() != 0 ){ // check timeout.length() != 0 because is IMPLIED att
                        intTimeout=Integer.parseInt(timeout);
                        if(intTimeout > -1 && intTimeout < Integer.MAX_VALUE)
                          validTimeOutValue=true;
                        else
                          validTimeOutValue=false;
                      }*/
                    if(timeout  != null && timeout.length() != 0 ){ // check timeout.length() != 0 because is IMPLIED att
                        longTimeout=Long.parseLong(timeout);
                        if(longTimeout >= -1 && longTimeout <= Long.MAX_VALUE)
                          validTimeOutValue=true;
                        else
                          validTimeOutValue=false;
                      }
                    //</addition>

                } catch(NumberFormatException exception) {
                     validTimeOutValue=false;
                     oneFailed = true;


                }

                if(validTimeOutValue){
                    result.passed(smh.getLocalString
					  (getClass().getName() + ".passed1",
					   "PASSED [AS-WEB cache] timeout-in-seconds  [ {0} ] defined properly.",
					   new Object[] {timeout}));
                     
                }else{
                    //<addition author="irfan@sun.com" [bug/rfe]-id="4705988" >
                    /*result.addErrorDetails(smh.getLocalString
                                      (getClass().getName() + ".failed",
                                      "Error: cache's timeout [ {0} ], attribute must be a proper inetger value. " +
                                      "Its range should be between  0 to Integer.MAX_VALUE.",
                                      new Object[] {timeout}));
                     */
                    result.failed(smh.getLocalString
                                      (getClass().getName() + ".failed1",
                                      "FAILED [AS-WEB cache] timeout-in-seconds value [ {0} ], attribute must be a proper long value. " +
                                      "Its range should be between -1 and MAX_LONG.",
                                      new Object[] {timeout}));
                    oneFailed = true;
                    //</addition>
                }


        } else {
            notApp = true;
	    result.notApplicable(smh.getLocalString
                                 (getClass().getName() + ".notApplicable",
                                  "NOT APPLICABLE [AS-WEB cache] Element not defined for the web application.",
                                  new Object[] {descriptor.getName()}));
        }
        if (oneFailed) {
            result.setStatus(Result.FAILED);
        } else if(notApp) {
            result.setStatus(Result.NOT_APPLICABLE);
        }else {
            result.setStatus(Result.PASSED);
        }
	return result;
    
public CachegetCache(com.sun.enterprise.deployment.WebBundleDescriptor descriptor)


         Cache c= descriptor.getIasWebApp().getCache();
         return c;