Hi
We are trying to extend RegionScopedSwiftblobStore for our use case somewhat
like
public class SwiftBlobStore extends RegionScopedSwiftBlobStore{ // Our
Implementation
}
Compilation is successful, binding is not happening properly at the run time
Error:
1) No implementation for java.lang.String annotated with
@com.google.inject.assistedinject.Assisted(value=) was bound.
while locating java.lang.String annotated with
@com.google.inject.assistedinject.Assisted(value=)
for parameter 4 at
com.modules.SwiftBlobStore.<init>(SwiftBlobStore.java:129)
@Assisted is causing issue here. Is there anything that we need modify
internally to avoid this error ?
RegardsArchana