Package org.jboss.jca.embedded
Interface Embedded
-
public interface EmbeddedThe embedded IronJacamar container- Author:
- Jesper Pedersen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeploy(URL url)Deployvoiddeploy(org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive raa)Deployvoiddeploy(org.jboss.shrinkwrap.descriptor.api.Descriptor descriptor)Deploy<T> Tlookup(String name, Class<T> expectedType)Lookup a beanvoidshutdown()Shutdownvoidstartup()Startupvoidundeploy(URL url)Undeployvoidundeploy(org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive raa)Undeployvoidundeploy(org.jboss.shrinkwrap.descriptor.api.Descriptor descriptor)Undeploy
-
-
-
Method Detail
-
deploy
void deploy(URL url) throws Throwable
Deploy- Parameters:
url- The resource url- Throws:
Throwable- If an error occurs
-
deploy
void deploy(org.jboss.shrinkwrap.descriptor.api.Descriptor descriptor) throws ThrowableDeploy- Parameters:
descriptor- The descriptor- Throws:
Throwable- If an error occurs
-
deploy
void deploy(org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive raa) throws ThrowableDeploy- Parameters:
raa- The resource adapter archive- Throws:
Throwable- If an error occurs
-
undeploy
void undeploy(URL url) throws Throwable
Undeploy- Parameters:
url- The resource url- Throws:
Throwable- If an error occurs
-
undeploy
void undeploy(org.jboss.shrinkwrap.descriptor.api.Descriptor descriptor) throws ThrowableUndeploy- Parameters:
descriptor- The descriptor- Throws:
Throwable- If an error occurs
-
undeploy
void undeploy(org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive raa) throws ThrowableUndeploy- Parameters:
raa- The resource adapter archive- Throws:
Throwable- If an error occurs
-
-