KickJava   Java API By Example, From Geeks To Geeks.

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


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 victim-selection-policy specifies the algorithm that is used to select
44  * victims.
45  * Valid values are FIFO, LRU and NRU
46  * @author Irfan Ahmed
47  */

48 public class ASEjbBCVictimPolicy 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 victimPolicy = beanCache.getVictimSelectionPolicy();
67                 if(victimPolicy!=null)
68                 {
69                     if(victimPolicy.length()==0)
70                     {
71                         result.failed(smh.getLocalString(getClass().getName()+".failed1",
72                             "FAILED [AS-EJB bean-cache] : victim-selection-policy cannot be empty. It has to be either FIFO, NRU or LRU"));
73                     }
74                     else
75                     {
76                         if(!victimPolicy.equalsIgnoreCase("FIFO") && !victimPolicy.equalsIgnoreCase("NRU")
77                             && !victimPolicy.equalsIgnoreCase("LRU"))
78                         {
79                             result.failed(smh.getLocalString(getClass().getName()+".failed2",
80                                 "FAILED [AS-EJB bean-cache] : victim-selection-policy cannot be {0}. It should be either FIFO, NRU or LRU [case insensitive]",
81                                 new Object JavaDoc[]{victimPolicy}));
82                         }
83                         else
84                         {
85                             result.passed(smh.getLocalString(getClass().getName()+".passed",
86                                 "PASSED [AS-EJB bean-cache] : victim-selection-policy is {0}",
87                                 new Object JavaDoc[]{victimPolicy}));
88                         }
89                     }
90                 }
91                 else
92                 {
93                     result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
94                     "NOT APPLICABLE [AS-EJB bean-cache] : victim-selection-policy element not defined"));
95                 }
96             }
97             else
98             {
99                 result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
100                     "NOT APPLICABLE [AS-EJB] : bean-cache element not defined"));
101             }
102         }
103         else
104         {
105             result.addErrorDetails(smh.getLocalString
106                                    ("tests.componentNameConstructor",
107                                     "For [ {0} ]",
108                                     new Object JavaDoc[] {compName.toString()}));
109             result.addErrorDetails(smh.getLocalString
110                  (getClass().getName() + ".notRun",
111                   "NOT RUN [AS-EJB] : Could not create an SunEjbJar object"));
112         }
113         return result;
114     }
115 }
116
117
Popular Tags