KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > tools > verifier > tests > ejb > ias > beancache > ASEjbBCRemovalTimeout


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 package com.sun.enterprise.tools.verifier.tests.ejb.ias.beancache;
25
26 import com.sun.enterprise.tools.verifier.tests.ejb.EjbTest;
27 import java.util.*;
28 import com.sun.enterprise.deployment.EjbDescriptor;
29 import com.sun.enterprise.deployment.EjbSessionDescriptor;
30 import com.sun.enterprise.tools.verifier.*;
31 import com.sun.enterprise.tools.verifier.tests.*;
32
33 import com.sun.enterprise.tools.common.dd.ejb.*;
34
35 /** ejb [0,n]
36  * bean-cache ?
37  * max-cache-size ? [String]
38  * is-cache-overflow-allowed ? [String]
39  * cache-idle-timout-in-seconds ? [String]
40  * removal-timeout-in-seconds ? [String]
41  * victim-selection-policy ? [String]
42  *
43  * The removal-timeout-in-seconds specifies the amount of time the bean remains
44  * passivated.
45  * Valid values are between 0 and MAX_LONG
46  * @author Irfan Ahmed
47  */

48 public class ASEjbBCRemovalTimeout extends ASEjbBeanCache
49 {
50     
51     public Result check(EjbDescriptor descriptor)
52     {
53
54     Result result = getInitializedResult();
55     ComponentNameConstructor compName = new ComponentNameConstructor(descriptor);
56
57         SunEjbJar ejbJar = descriptor.getEjbBundleDescriptor().getIasEjbObject();
58         String JavaDoc ejbName = null;
59         Ejb testCase = null;
60         boolean oneFailed = false;
61         if(ejbJar!=null)
62         {
63             getBeanCache(descriptor,ejbJar);
64             if(beanCache!=null)
65             {
66                 String JavaDoc removeTime = beanCache.getRemovalTimeoutInSeconds();
67                 if(removeTime!=null)
68                 {
69                     if(removeTime.length()==0)
70                     {
71                         result.failed(smh.getLocalString(getClass().getName()+".failed1",
72                             "FAILED [AS-EJB bean-cache] : removal-timeout-in-seconds cannot be empty"));
73                     }
74                     else
75                     {
76                         try
77                         {
78                             long value = Long.valueOf(removeTime).longValue();
79                             if(value < 0 || value > Long.MAX_VALUE)
80                             {
81                                 result.failed(smh.getLocalString(getClass().getName()+".failed2",
82                                     "FAILED [AS-EJB bean-cache] : removal-timeout-in-seconds cannot be {0}. It should be between 0 and {1}",
83                                     new Object JavaDoc[]{new Long JavaDoc(value),new Long JavaDoc(Long.MAX_VALUE)}));
84                             }
85                             else
86                             {
87                                 result.passed(smh.getLocalString(getClass().getName()+".passed",
88                                     "PASSED [AS-EJB bean-cache] : removal-timeout-in-seconds is {0}",
89                                     new Object JavaDoc[]{new Long JavaDoc(value)}));
90                             }
91                         }
92                         catch(NumberFormatException JavaDoc nfex)
93                         {
94                             Verifier.debug(nfex);
95                             result.failed(smh.getLocalString(getClass().getName()+".failed3",
96                                 "FAILED [AS-EJB bean-cache] : The vale {0} for removal-timeout-in-seconds is not a valid Long number",new Object JavaDoc[]{removeTime}));
97                         }
98                     }
99                 }
100                 else
101                 {
102                     result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
103                     "NOT APPLICABLE [AS-EJB bean-cache] : removal-timeout-in-seconds element not defined"));
104                 }
105             }
106             else
107             {
108                 result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
109                     "NOT APPLICABLE [AS-EJB] : bean-cache element not defined"));
110             }
111         }
112         else
113         {
114             result.addErrorDetails(smh.getLocalString
115                                    ("tests.componentNameConstructor",
116                                     "For [ {0} ]",
117                                     new Object JavaDoc[] {compName.toString()}));
118             result.addErrorDetails(smh.getLocalString
119                  (getClass().getName() + ".notRun",
120                   "NOT RUN [AS-EJB] : Could not create an SunEjbJar object"));
121         }
122         return result;
123     }
124 }
125
126
Popular Tags