Package org.jboss.wsf.spi.deployment
Interface ArchiveDeployment
-
- All Superinterfaces:
Deployment,Extensible
public interface ArchiveDeployment extends Deployment
A general web service deployment.- Since:
- 20-Apr-2007
- Author:
- Thomas.Diesler@jboss.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddMetadataFile(UnifiedVirtualFile file)Add additional metadata file to the deploymentStringgetCanonicalName()The concatenated names including all parents.List<UnifiedVirtualFile>getMetadataFiles()Get additional metadata files attached to the deploymentArchiveDeploymentgetParent()Get the optional parent of this deploymentResourceResolvergetResourceResolver()Get the resource resolver to be used to access resources from this archiveUnifiedVirtualFilegetRootFile()Get the root file for this deployment-
Methods inherited from interface org.jboss.wsf.spi.deployment.Deployment
getClassLoader, getService, getSimpleName
-
Methods inherited from interface org.jboss.wsf.spi.deployment.Extensible
addAttachment, getAttachment, getAttachments, getProperties, getProperty, removeAttachment, removeProperty, setProperties, setProperty
-
-
-
-
Method Detail
-
getParent
ArchiveDeployment getParent()
Get the optional parent of this deployment- Returns:
- parent of the deployment
-
getRootFile
UnifiedVirtualFile getRootFile()
Get the root file for this deployment- Returns:
- root file of the deployment
-
getCanonicalName
String getCanonicalName()
The concatenated names including all parents.- Returns:
- concatenated names
-
getMetadataFiles
List<UnifiedVirtualFile> getMetadataFiles()
Get additional metadata files attached to the deployment- Returns:
- metadata files attached to the deployment
-
addMetadataFile
void addMetadataFile(UnifiedVirtualFile file)
Add additional metadata file to the deployment- Parameters:
file- metadata file to the deployment
-
getResourceResolver
ResourceResolver getResourceResolver()
Get the resource resolver to be used to access resources from this archive- Returns:
- resource resolver
-
-