Package com.sun.enterprise.tools.common.dd.connector

Examples of com.sun.enterprise.tools.common.dd.connector.ResourceAdapter


            result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable1",
            "NOT APPLICABLE [AS�CONNECTOR]: sun-ra.xml descriptor object could not be obtained"));

     }
     else{
     ResourceAdapter ra = sc.getResourceAdapter();
     String idleTimeout = ra.getAttributeValue("idle-timeout-in-seconds");
     if(idleTimeout.length()==0)
     {
         result.failed(smh.getLocalString(getClass().getName()+".failed1",
                    "FAILED [AS-CONNECTOR resource-adapter] : idle-timeout-in-seconds cannot be empty"));
     }
View Full Code Here


            result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable1",
         "NOT APPLICABLE [AS�CONNECTOR]: sun-ra.xml descriptor object could not be obtained"));
               
     }
     else{
     ResourceAdapter ra = sc.getResourceAdapter();
     String maxPoolSize = ra.getAttributeValue("max-pool-size");
     if(maxPoolSize.length()==0)
     {
         result.failed(smh.getLocalString(getClass().getName()+".failed1",
                    "FAILED [AS-CONNECTOR resource-adapter] : max-pool-size cannot be empty"));
     }
View Full Code Here

            result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable1",
          "NOT APPLICABLE [AS�CONNECTOR]: sun-ra.xml descriptor object could not be obtained"));
               
     }
     else{
     ResourceAdapter ra = sc.getResourceAdapter();
     String maxWait = ra.getAttributeValue("max-wait-time-in-millis");
     if(maxWait.length()==0)
     {
         result.failed(smh.getLocalString(getClass().getName()+".failed1",
                    "FAILED [AS-CONNECTOR resource-adapter] : max-wait-time-in-millis cannot be empty"));
     }
View Full Code Here

            result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable1",
        "NOT APPLICABLE [AS�CONNECTOR]: sun-ra.xml descriptor object could not be obtained"));
               
     }
     else{
     ResourceAdapter ra = sc.getResourceAdapter();
     if( ra == null)
   {
            result.addErrorDetails(smh.getLocalString
                                   ("tests.componentNameConstructor",
                                    "For [ {0} ]",
                                    new Object[] {compName.toString()}));
            result.addErrorDetails(smh.getLocalString
                 (getClass().getName() + ".notRun",
                  "NOT RUN [AS-EJB] : Could not create an SunEjbJar object"));

   }
     String steadyPoolSize = ra.getAttributeValue("steady-pool-size");
     if(steadyPoolSize.length()==0)
     {
         result.failed(smh.getLocalString(getClass().getName()+".failed1",
                    "FAILED [AS-CONNECTOR resource-adapter] : steady-pool-size cannot be empty"));
     }
     else
     {
        try
        {
            int value = Integer.valueOf(steadyPoolSize).intValue();
            if(value < || value > Integer.MAX_VALUE)
            {
                result.failed(smh.getLocalString(getClass().getName()+".failed2",
                    "FAILED [AS-CONNECTOR resource-adapter] : steady-pool-size cannot be {0}. It should be between 0 and {1}",
                new Object[]{new Integer(value),new Integer(Integer.MAX_VALUE)}));
            }
            else
            {
          String maxPool = ra.getAttributeValue("max-pool-size");
        int maxPoolSize = 0;
        try{
              maxPoolSize = Integer.valueOf(maxPool).intValue();
        }catch(NumberFormatException nfe){
            result.failed(smh.getLocalString(getClass().getName()+".failed3","FAILED [AS-CONNECTOR resource-adapter] : steady-pool-size should be less than max-pool-size and the value {0} for max-pool-size is not a valid Integer number",new Object[]{maxPool}));
View Full Code Here

            }
            catch (Throwable t) {
                t.printStackTrace();
            }
        }
        ra = new ResourceAdapter();
        for (int i = 0; i < rowCount; i++) {
            ra.addPropertyElement(true);
            ra.setAttributeValue(ResourceAdapter.PROPERTY,i,"name",""+i); //NOI18N
            ra.setAttributeValue(ResourceAdapter.PROPERTY,i,"value",""+(rowCount - i)); //NOI18N
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.tools.common.dd.connector.ResourceAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.