Package org.jboss.ejb3.packagemanager.exception

Examples of org.jboss.ejb3.packagemanager.exception.PackageRetrievalException


   @Override
   public JavaEEApplication getApplication()
   {
      // getApplication must return null if there is no ear
      JavaEEApplication app = super.getApplication();
      if(((JBoss5DeploymentScope) app).isEar())
         return app;
      return null;
   }
View Full Code Here


      {
         EJBContainer container = EJBContainer.class.cast(service);
         // TODO: use an informer
         JavaEEModule module = container.getModule();
         String moduleName = stripSuffix(module.getName());
         JavaEEApplication app = module.getApplication();
         String appName = app != null ? stripSuffix(app.getName()) : null;
         String scopedBeanName = "application=" + (appName != null ? appName : moduleName) + ",module=" + moduleName + ",component=" + container.getEjbName();
         String encFactoryBeanName = "jboss.ejb3:" + scopedBeanName + ",service=EjbEncFactory";
         // create an EjbEncFactory for this container
         {
            BeanMetaDataBuilder builder = BeanMetaDataBuilderFactory.createBuilder(encFactoryBeanName, NamingComponentEjbEncFactory.class.getName());
View Full Code Here

      if(service instanceof EJBContainer)
      {
         EJBContainer container = EJBContainer.class.cast(service);
         // TODO: use an informer
         JavaEEModule module = container.getModule();
         String moduleName = stripSuffix(module.getName());
         JavaEEApplication app = module.getApplication();
         String appName = app != null ? stripSuffix(app.getName()) : null;
         String scopedBeanName = "application=" + (appName != null ? appName : moduleName) + ",module=" + moduleName + ",component=" + container.getEjbName();
         String encFactoryBeanName = "jboss.ejb3:" + scopedBeanName + ",service=EjbEncFactory";
         // create an EjbEncFactory for this container
         {
View Full Code Here

*/
public class ClientJavaEEComponent extends AbstractJavaEEComponent
{
   public ClientJavaEEComponent(String clientName)
   {
      super(new SimpleJavaEEModule(clientName));
   }
View Full Code Here

   private PersistenceUnitDependencyResolver persistenceUnitDependencyResolver;

   public ClientENCInjectionContainer(VFSDeploymentUnit unit, JBossClientMetaData xml, Class<?> mainClass, String applicationClientName, ClassLoader classLoader,
         Context encCtx, PersistenceUnitDependencyResolver persistenceUnitDependencyResolver) throws NamingException
   {
      super(new SimpleJavaEEModule((unit.getParent() != null ? unit.getParent().getSimpleName() : null), unit.getSimpleName()));
      if (mainClass == null)
         throw new NullPointerException("mainClass is mandatory");
      if (applicationClientName == null)
         throw new NullPointerException("applicationClientName is mandatory");
      if (classLoader == null)
View Full Code Here

   }

   public TomcatInjectionContainer(WebApplication appInfo, DeploymentUnit unit, org.apache.catalina.Context catalinaContext,
         PersistenceUnitDependencyResolver resolver, Set<String> dynamicClassLoaders, JavaEEComponent component, InjectionManager injectionManager)
   {
      super(new SimpleJavaEEModule(appInfo.getName()));

      assert component != null : "component is null";

      this.unit = unit;
      this.appInfo = appInfo;
View Full Code Here

      if(result instanceof JBossGenericBeanMetaData)
      {
         log.warn("FIXME: EJBTHREE-1227: JBossGenericBeanMetaData found for '" + ejbName + "' instead of " + enterpriseBeanMetaDataClass);
         if(enterpriseBeanMetaDataClass.equals(JBossSessionBeanMetaData.class))
         {
            result = new JBossSessionGenericWrapper((JBossGenericBeanMetaData) result);
         }
         else if(enterpriseBeanMetaDataClass.equals(JBossMessageDrivenBeanMetaData.class))
         {
            result = new JBossMessageDrivenBeanGenericWrapper((JBossGenericBeanMetaData) result);
         }
View Full Code Here

    * </p>
    *
    */
   protected void initMetaDataBasedAnnotationRepository()
   {
      this.metadataBasedAnnotationRepo = new AnnotationRepositoryToMetaData(this.beanClass, this.xml, name, this.classloader);
      List<MetaDataBridge<InterceptorMetaData>> interceptorBridges = new ArrayList<MetaDataBridge<InterceptorMetaData>>();
      interceptorBridges.add(new InterceptorMetaDataBridge());
      this.metadataBasedAnnotationRepo.addComponentMetaDataLoaderFactory(new InterceptorComponentMetaDataLoaderFactory(interceptorBridges));
      this.metadataBasedAnnotationRepo.addMetaDataBridge(new AdditiveBeanInterceptorMetaDataBridge(this.beanClass, this.classloader, this.xml));
     
View Full Code Here

   @Override
   public File retrievePackage(PackageManagerContext pkgMgrCtx, URL packagePathURL) throws PackageRetrievalException
   {
      if (packagePathURL == null)
      {
         throw new PackageRetrievalException("Invalid url " + packagePathURL);
      }
      if (!packagePathURL.getProtocol().equals("file"))
      {
         throw new PackageRetrievalException(FileSystemPackageRetriever.class
               + " can only retrieve package from a file: URL. It can't handle " + packagePathURL);
      }
      File pkg = new File(packagePathURL.getFile());
      return pkg;
View Full Code Here

   @Override
   public File retrievePackage(PackageManagerContext pkgMgrCtx, URL packagePath) throws PackageRetrievalException
   {
      if (!packagePath.getProtocol().equals("http"))
      {
         throw new PackageRetrievalException("Cannot handle " + packagePath);
      }
      HttpClient httpClient = new DefaultHttpClient();
      HttpGet httpGet = new HttpGet(packagePath.toExternalForm());
      HttpResponse httpResponse = null;
      try
      {
         httpResponse = httpClient.execute(httpGet);
      }
      catch (Exception e)
      {
         throw new PackageRetrievalException("Exception while retrieving package " + packagePath, e);
      }
      if (httpResponse.getStatusLine().getStatusCode() != HttpStatus.SC_OK)
      {
         throw new PackageRetrievalException("Http retrieval wasn't successful, returned status code  "
               + httpResponse.getStatusLine().getStatusCode());
      }
      HttpEntity httpEntity = httpResponse.getEntity();

      try
      {
         // TODO: should this tmp be deleted on exit?
         File tmpPkgFile = File.createTempFile("tmp", ".jar", pkgMgrCtx.getPackageManagerEnvironment()
               .getPackageManagerTmpDir());
         FileOutputStream fos = new FileOutputStream(tmpPkgFile);
         BufferedOutputStream bos = null;
         BufferedInputStream bis = null;
         try
         {
            bos = new BufferedOutputStream(fos);
            InputStream is = httpEntity.getContent();
            bis = new BufferedInputStream(is);
            byte[] content = new byte[4096];
            int length;
            while ((length = bis.read(content)) != -1)
            {
               bos.write(content, 0, length);
            }
            bos.flush();
         }
         finally
         {
            if (bos != null)
            {
               bos.close();
            }
            if (bis != null)
            {
               bis.close();
            }
         }
         return tmpPkgFile;

      }
      catch (IOException ioe)
      {
         throw new PackageRetrievalException("Could not process the retrieved package", ioe);
      }
      // TODO: I need to read the HttpClient 4.x javadocs to figure out the API for closing the
      // Http connection

   }
View Full Code Here

TOP

Related Classes of org.jboss.ejb3.packagemanager.exception.PackageRetrievalException

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.