Package org.jboss.arquillian.persistence.script.data.descriptor

Examples of org.jboss.arquillian.persistence.script.data.descriptor.InlineSqlScriptResourceDescriptor


   protected SqlScriptResourceDescriptor createDescriptor(String resource)
   {

      if (!ScriptLoader.isSqlScriptFile(resource))
      {
         return new InlineSqlScriptResourceDescriptor(resource);
      }

      return new FileSqlScriptResourceDescriptor(determineLocation(resource));
   }
View Full Code Here


         {
            processedScripts.add(new FileSqlScriptResourceDescriptor(script));
         }
         else if (!Strings.isEmpty(script))
         {
            processedScripts.add(new InlineSqlScriptResourceDescriptor(script));
         }
      }
      return processedScripts;
   }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.persistence.script.data.descriptor.InlineSqlScriptResourceDescriptor

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.