]
Aslak updated SHRINKWRAP-89:
----------------------------
Fix Version/s: 1.0.0-alpha-3
Assignee: Aslak
Java Service Provider methods for the ManifestContainer
-------------------------------------------------------
Key: SHRINKWRAP-89
URL:
https://jira.jboss.org/jira/browse/SHRINKWRAP-89
Project: ShrinkWrap
Issue Type: Feature Request
Reporter: Aslak
Assignee: Aslak
Fix For: 1.0.0-alpha-3
Adding a SerivceProvider to a archive is a bit cumbersome..
{code}
.addManifestResource(
"META-INF/services/org.jboss.arquillian.spi.TestRunner",
"services/org.jboss.arquillian.spi.TestRunner");
{code}
How about adding something like this to the ManifestContainer ?
- a ServiceProviderAsset that can handle the file ie:
{code}
<X> addServiceProvider(Class<X> providerInterface, Class<?
extends X>... providerImpls)
{
addManifestResource(new ServiceProviderAsset(providerImpls),
Paths.create("services/" + providerInterface.getName()));
}
{code}
- a Auto lookup based on ProviderInterface ie:
{code}
addServiceProvider(Class<?> providerInterface)
{
addManifestResource(new ClassLoaderAsset("META-INF/service/" +
providerInterface.getName()), Paths.create("services/" +
providerInterface.getName()))
}
{code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: