org.jboss.shrinkwrap.api.container.ManifestContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shrinkwrap-api Show documentation
Show all versions of shrinkwrap-api Show documentation
Client View of the ShrinkWrap Project
/*
* JBoss, Home of Professional Open Source
* Copyright 2009, 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.shrinkwrap.api.container;
import java.io.File;
import java.net.URL;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ArchivePath;
import org.jboss.shrinkwrap.api.asset.Asset;
/**
* Defines the contract for a component capable of storing Manifest related resources.
*
* The actual path to the Manifest resources within the {@link Archive} is up to the implementations/specifications.
*
* @author Aslak Knutsen
* @version $Revision: $
* @param
*/
public interface ManifestContainer> {
String DEFAULT_MANIFEST_NAME = "MANIFEST.MF";
// -------------------------------------------------------------------------------------||
// Contracts --------------------------------------------------------------------------||
// -------------------------------------------------------------------------------------||
/**
* Adds the resource as MANIFEST.FM to the container, returning the container itself.
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourceName
* resource to add
* @return This virtual archive
* @throws IllegalArgumentException
* if resourceName is null
* @see #setManifest(Asset)
*/
T setManifest(String resourceName) throws IllegalArgumentException;
/**
* Adds the {@link File} as MANIFEST.FM to the container, returning the container itself.
*
* @param resource
* {@link File} resource to add
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @see #setManifest(Asset)
*/
T setManifest(File resource) throws IllegalArgumentException;
/**
* Adds the {@link URL} as MANIFEST.FM to the container, returning the container itself.
*
* @param resource
* {@link URL} resource to add
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @see #setManifest(Asset)
*/
T setManifest(URL resource) throws IllegalArgumentException;
/**
* Adds the {@link Asset} as MANIFEST.FM to the container, returning the container itself.
*
* @param resource
* {@link File} resource to add
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T setManifest(Asset resource) throws IllegalArgumentException;
/**
* Adds the resource inside the package as a MANIFEST.MF to the container, returning the container itself.
*
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourcePackage
* The package of the resource
* @param resourceName
* The name of the resource inside resoucePackage
* @return This virtual archive
* @throws IllegalArgumentException
* if resourcePackage is null
* @throws IllegalArgumentException
* if resourceName is null
*/
T setManifest(Package resourcePackage, String resourceName) throws IllegalArgumentException;
/**
* Adds the resource as a Manifest resource to the container, returning the container itself.
* The resource will be placed into the Container Manifest path under the same context from which it was retrieved.
*
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourceName
* resource to add
* @return This virtual archive
* @throws IllegalArgumentException
* if resourceName is null
* @throws IllegalArgumentException
* if target is null
*/
T addAsManifestResource(String resourceName) throws IllegalArgumentException;
/**
* Adds the {@link File} as a Manifest resource to the container, returning the container itself.
* The {@link File} will be placed into the Container Manifest path under {@link File#getName()}.
*
* @param resource
* resource to add
* @return This virtual archive
* @throws IllegalArgumentException
* if {@link File} resource is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(File resource) throws IllegalArgumentException;
/**
* Adds the resource as a Manifest resource to the container, returning the container itself.
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourceName
* resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resourceName is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(String resourceName, String target) throws IllegalArgumentException;
/**
* Adds the {@link File} as a Manifest resource to the container, returning the container itself.
*
* @param resource
* {@link File} resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(File resource, String target) throws IllegalArgumentException;
/**
* Adds the {@link URL} as a Manifest resource to the container, returning the container itself.
*
* @param resource
* {@link URL} resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(URL resource, String target) throws IllegalArgumentException;
/**
* Adds the {@link Asset} as a Manifest resource to the container, returning the container itself.
*
* @param resource
* {@link Asset} resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(Asset resource, String target) throws IllegalArgumentException;
/**
* Adds the resource as a Manifest resource to the container, returning the container itself.
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourceName
* resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resourceName is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(String resourceName, ArchivePath target) throws IllegalArgumentException;
/**
* Adds the {@link File} as a Manifest resource to the container, returning the container itself.
*
* @param resource
* {@link File} resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(File resource, ArchivePath target) throws IllegalArgumentException;
/**
* Adds the {@link URL} as a Manifest resource to the container, returning the container itself.
*
* @param resource
* {@link URL} resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @throws IllegalArgumentException
* if target is null
* @see #addAsManifestResource(Asset, ArchivePath)
*/
T addAsManifestResource(URL resource, ArchivePath target) throws IllegalArgumentException;
/**
* Adds the {@link Asset} as a Manifest resource to the container, returning the container itself.
*
* @param resource
* {@link Asset} resource to add
* @param target
* The target path within the archive in which to add the resource, relative to the {@link Archive}s
* manifest path.
* @return This virtual archive
* @throws IllegalArgumentException
* if resource is null
* @throws IllegalArgumentException
* if target is null
*/
T addAsManifestResource(Asset resource, ArchivePath target) throws IllegalArgumentException;
/**
* Adds the resources inside the package as multiple resources to the container, returning the container itself.
*
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourcePackage
* The package of the resources
* @param resourceNames
* The names of the resources inside resoucePackage
* @return This virtual archive
* @throws IllegalArgumentException
* if resourcePackage is null
* @throws IllegalArgumentException
* if no resourceNames are specified or containing null
*/
T addAsManifestResources(Package resourcePackage, String... resourceNames) throws IllegalArgumentException;
/**
* Adds the resource as a resource to the container, returning the container itself.
*
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourcePackage
* The package of the resource
* @param resourceName
* The name of the resource inside resoucePackage
* @return This virtual archive
* @throws IllegalArgumentException
* if resourcePackage is null
* @throws IllegalArgumentException
* if resourceName is null
*/
T addAsManifestResource(Package resourcePackage, String resourceName) throws IllegalArgumentException;
/**
* Adds the resource as a resource to a specific path inside the container, returning the container itself.
*
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourcePackage
* The package of the resource
* @param resourceName
* The name of the resource inside resoucePackage
* @param target
* The target location inside the container
* @return This virtual archive
* @throws IllegalArgumentException
* if resourcePackage is null
* @throws IllegalArgumentException
* if resourceName is null
* @throws IllegalArgumentException
* if target is null
*/
T addAsManifestResource(Package resourcePackage, String resourceName, String target)
throws IllegalArgumentException;
/**
* Adds the resource as a resource to a specific path inside the container, returning the container itself.
*
* The {@link ClassLoader} used to obtain the resource is up to the implementation.
*
* @param resourcePackage
* The package of the resource
* @param resourceName
* The name of the resource inside resoucePackage
* @param target
* The target location inside the container
* @return This virtual archive
* @throws IllegalArgumentException
* if resourcePackage is null
* @throws IllegalArgumentException
* if resourceName is null
* @throws IllegalArgumentException
* if target is null
*/
T addAsManifestResource(Package resourcePackage, String resourceName, ArchivePath target)
throws IllegalArgumentException;
/**
* Adds a META-INF/services/ServiceInterfaceName {@link Asset} representing this service.
*
* Warning: this method does not add the specified classes to the archive.
*
* @param serviceInterface
* The Service Interface class
* @param serviceImpls
* The Service Interface Implementations
* @return This virtual archive
* @throws IllegalArgumentException
* if serviceInterface is null
* @throws IllegalArgumentException
* if serviceImpls is null or contain null values
*/
/*
* TODO: The interface should have been like this: T addServiceProvider(Class serviceInterface, Class
* extends X>... serviceImpls) throws IllegalArgumentException; But due to how java generic works, this will cause a
* unsafe warning for the user.
*/
T addAsServiceProvider(Class> serviceInterface, Class>... serviceImpls) throws IllegalArgumentException;
/**
* Adds a META-INF/services/ServiceInterfaceName {@link Asset} representing this service.
*
* @param serviceInterface
* The Service Interface class name
* @param serviceImpls
* The Service Interface Implementations class names
* @return This virtual archive
* @throws IllegalArgumentException
* if serviceInterface is null
* @throws IllegalArgumentException
* if serviceImpls is null or contain null values
* @see ManifestContainer#addAsServiceProvider(Class, Class...)
*/
T addAsServiceProvider(String serviceInterface, String... serviceImpls);
/**
* Adds a default generated MANIFEST.MF manifest to the current archive.
*
* @return This virtual archive
* @throws IllegalArgumentException
* if serviceInterface is null
*/
T addManifest() throws IllegalArgumentException;
}