org.jboss.wsf.spi.deployment
Interface Deployment

All Superinterfaces:
Extensible
All Known Subinterfaces:
ArchiveDeployment

public interface Deployment
extends Extensible

A general web service deployment dep. It has no notion of J2EE deployment packages.

Author:
Thomas.Diesler@jboss.com

Method Summary
 ClassLoader getInitialClassLoader()
          Get the class loader for this deployment
 ClassLoader getRuntimeClassLoader()
          Get the runtime class loader for this deployment
 Service getService()
          Get the service associated with this deployment
 String getSimpleName()
          Get the identifier for this deployment
 DeploymentState getState()
          Get the current deployment state
 DeploymentType getType()
          Get the deployment type
 void setInitialClassLoader(ClassLoader loader)
          Set the class loader for this deployment
 void setRuntimeClassLoader(ClassLoader loader)
          Set the runtime class loader for this deployment
 void setService(Service service)
          Set the service associated with this deployment
 void setSimpleName(String name)
          Set the identifier for this deployment
 void setState(DeploymentState type)
          Set the current deployment state
 void setType(DeploymentType type)
          Set the deployment type
 
Methods inherited from interface org.jboss.wsf.spi.deployment.Extensible
addAttachment, getAttachment, getAttachments, getProperties, getProperty, removeAttachment, removeProperty, setProperties, setProperty
 

Method Detail

getSimpleName

String getSimpleName()
Get the identifier for this deployment


setSimpleName

void setSimpleName(String name)
Set the identifier for this deployment


getInitialClassLoader

ClassLoader getInitialClassLoader()
Get the class loader for this deployment


setInitialClassLoader

void setInitialClassLoader(ClassLoader loader)
Set the class loader for this deployment


getRuntimeClassLoader

ClassLoader getRuntimeClassLoader()
Get the runtime class loader for this deployment


setRuntimeClassLoader

void setRuntimeClassLoader(ClassLoader loader)
Set the runtime class loader for this deployment


getType

DeploymentType getType()
Get the deployment type


setType

void setType(DeploymentType type)
Set the deployment type


getState

DeploymentState getState()
Get the current deployment state


setState

void setState(DeploymentState type)
Set the current deployment state


getService

Service getService()
Get the service associated with this deployment


setService

void setService(Service service)
Set the service associated with this deployment



Copyright © 2012 JBoss, by Red Hat. All Rights Reserved.