Package org.jboss.arquillian.container.wls.remote_12_1

Source Code of org.jboss.arquillian.container.wls.remote_12_1.WebLogicContainer

/*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.arquillian.container.wls.remote_12_1;

import org.jboss.arquillian.container.spi.client.container.DeployableContainer;
import org.jboss.arquillian.container.spi.client.container.DeploymentException;
import org.jboss.arquillian.container.spi.client.container.LifecycleException;
import org.jboss.arquillian.container.spi.client.protocol.ProtocolDescription;
import org.jboss.arquillian.container.spi.client.protocol.metadata.ProtocolMetaData;
import org.jboss.arquillian.container.wls.RemoteContainer;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.descriptor.api.Descriptor;

/**
* WebLogic 12.1.x container
*
* @author Vineet Reynolds
*
*/
public class WebLogicContainer implements DeployableContainer<WebLogicRemoteConfiguration>
{
  
   private WebLogicRemoteConfiguration configuration;
   private RemoteContainer remoteContainer;

   public Class<WebLogicRemoteConfiguration> getConfigurationClass()
   {
      return WebLogicRemoteConfiguration.class;
   }

   public void setup(WebLogicRemoteConfiguration configuration)
   {
      this.configuration = configuration;
      this.remoteContainer = new RemoteContainer(this.configuration);
   }

   public void start() throws LifecycleException
   {
       remoteContainer.start();
}

   public void stop() throws LifecycleException
   {
      remoteContainer.stop();
   }

   public ProtocolDescription getDefaultProtocol()
   {
      return new ProtocolDescription("Servlet 3.0");
   }

   public ProtocolMetaData deploy(Archive<?> archive) throws DeploymentException
   {
       return remoteContainer.deploy(archive);
   }

   public void undeploy(Archive<?> archive) throws DeploymentException
   {
      remoteContainer.undeploy(archive);
   }

   public void deploy(Descriptor descriptor) throws DeploymentException
   {
      throw new UnsupportedOperationException("Not yet implemented");
   }

   public void undeploy(Descriptor descriptor) throws DeploymentException
   {
      throw new UnsupportedOperationException("Not yet implemented");
   }

}
TOP

Related Classes of org.jboss.arquillian.container.wls.remote_12_1.WebLogicContainer

TOP
Copyright © 2018 www.massapi.com. 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.