Uses of Class
org.glassfish.hk2.api.MultiException

Packages that use MultiException
org.glassfish.hk2.api   
org.glassfish.hk2.utilities   
org.glassfish.hk2.utilities.binding   
 

Uses of MultiException in org.glassfish.hk2.api
 

Methods in org.glassfish.hk2.api that return MultiException
 MultiException ErrorInformation.getAssociatedException()
          This will contain the associated exception or exceptions that caused the failure.
 

Methods in org.glassfish.hk2.api that throw MultiException
 java.lang.Object ProxyCtl.__make()
          This method causes the proxy instance to get created at the current time, without calling any of the methods on the underlying class itself.
<T> ActiveDescriptor<T>
DynamicConfiguration.addActiveDescriptor(java.lang.Class<T> rawClass)
          This adds an active descriptor to the system based completely on the analysis of the given class.
 void DynamicConfiguration.commit()
          This causes the configuration to get committed.
 java.util.List<ServiceHandle<?>> ServiceLocator.getAllServiceHandles(java.lang.annotation.Annotation qualifier, java.lang.annotation.Annotation... qualifiers)
          Gets a list of ServiceHandle that can be used to get and destroy services associated with descriptors that match the provided criteria
<T> java.util.List<ServiceHandle<T>>
ServiceLocator.getAllServiceHandles(java.lang.Class<T> contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets a list of ServiceHandle that can be used to get and destroy services associated with descriptors that match the provided criteria
 java.util.List<ServiceHandle<?>> ServiceLocator.getAllServiceHandles(Filter searchCriteria)
          Gets a list of ServiceHandle whose ActiveDescriptors match the supplied filter.
 java.util.List<ServiceHandle<?>> ServiceLocator.getAllServiceHandles(java.lang.reflect.Type contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets a list of ServiceHandle that can be used to get and destroy services associated with descriptors that match the provided criteria
<T> java.util.List<T>
ServiceLocator.getAllServices(java.lang.annotation.Annotation qualifier, java.lang.annotation.Annotation... qualifiers)
          Gets the all the services from this locator that has the given qualifier or qualifiers
<T> java.util.List<T>
ServiceLocator.getAllServices(java.lang.Class<T> contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets the all the services from this locator that implements this contract or has this implementation
 java.util.List<?> ServiceLocator.getAllServices(Filter searchCriteria)
          Gets the all the services from this locator that matches the Filter
<T> java.util.List<T>
ServiceLocator.getAllServices(java.lang.reflect.Type contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets the all the services from this locator that implements this contract or has this implementation
 ActiveDescriptor<?> ServiceLocator.getInjecteeDescriptor(Injectee injectee)
          This method will first find a descriptor for this injectee, and then reify that descriptor.
<T> T
ServiceLocator.getService(ActiveDescriptor<T> activeDescriptor, ServiceHandle<?> root)
          Deprecated. use ServiceLocator.getService(ActiveDescriptor, ServiceHandle, Injectee)
<T> T
ServiceLocator.getService(ActiveDescriptor<T> activeDescriptor, ServiceHandle<?> root, Injectee injectee)
          This method should be called by code resolving injectee's on behalf of some root service, usually by an implementation of InjectionResolver.resolve(Injectee, ServiceHandle).
<T> T
ServiceLocator.getService(java.lang.Class<T> contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets the best service from this locator that implements this contract or has this implementation
<T> T
ServiceLocator.getService(java.lang.Class<T> contractOrImpl, java.lang.String name, java.lang.annotation.Annotation... qualifiers)
          Gets the best service from this locator that implements this contract or has this implementation and has the given name
<T> T
ServiceLocator.getService(java.lang.reflect.Type contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets the best service from this locator that implements this contract or has this implementation
<T> T
ServiceLocator.getService(java.lang.reflect.Type contractOrImpl, java.lang.String name, java.lang.annotation.Annotation... qualifiers)
          Gets the best service from this locator that implements this contract or has this implementation and has the given name
<T> ServiceHandle<T>
ServiceLocator.getServiceHandle(ActiveDescriptor<T> activeDescriptor)
          Gets a ServiceHandle that can be used to get and destroy the service described by the ActiveDescriptor.
<T> ServiceHandle<T>
ServiceLocator.getServiceHandle(ActiveDescriptor<T> activeDescriptor, Injectee injectee)
          Gets a ServiceHandle that can be used to get and destroy the service described by the ActiveDescriptor.
<T> ServiceHandle<T>
ServiceLocator.getServiceHandle(java.lang.Class<T> contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets a ServiceHandle that can be used to get and destroy the service that best matches the given criteria
<T> ServiceHandle<T>
ServiceLocator.getServiceHandle(java.lang.Class<T> contractOrImpl, java.lang.String name, java.lang.annotation.Annotation... qualifiers)
          Gets a ServiceHandle that can be used to get and destroy the service that best matches the given criteria
<T> ServiceHandle<T>
ServiceLocator.getServiceHandle(java.lang.reflect.Type contractOrImpl, java.lang.annotation.Annotation... qualifiers)
          Gets a ServiceHandle that can be used to get and destroy the service that best matches the given criteria
<T> ServiceHandle<T>
ServiceLocator.getServiceHandle(java.lang.reflect.Type contractOrImpl, java.lang.String name, java.lang.annotation.Annotation... qualifiers)
          Gets a ServiceHandle that can be used to get and destroy the service that best matches the given criteria
 java.lang.Class<?> HK2Loader.loadClass(java.lang.String className)
          Loads a class given the class name to instantiate
 void ErrorService.onFailure(ErrorInformation errorInformation)
          This method is called when a failure occurs in the system.
 ActiveDescriptor<?> ServiceLocator.reifyDescriptor(Descriptor descriptor)
          Converts a descriptor to an ActiveDescriptor.
 ActiveDescriptor<?> ServiceLocator.reifyDescriptor(Descriptor descriptor, Injectee injectee)
          Converts a descriptor to an ActiveDescriptor.
 

Uses of MultiException in org.glassfish.hk2.utilities
 

Methods in org.glassfish.hk2.utilities that throw MultiException
static
<T> T
ServiceLocatorUtilities.findOrCreateService(ServiceLocator locator, java.lang.Class<T> type, java.lang.annotation.Annotation... qualifiers)
          This method will first attempt to find a service corresponding to the type and qualifiers passed in to the method, and if one is found simply returns it.
 java.lang.Class<?> HK2LoaderImpl.loadClass(java.lang.String className)
           
 

Uses of MultiException in org.glassfish.hk2.utilities.binding
 

Methods in org.glassfish.hk2.utilities.binding that throw MultiException
<T> ActiveDescriptor<T>
AbstractBinder.addActiveDescriptor(java.lang.Class<T> rawClass)
          This adds an active descriptor to the system based completely on the analysis of the given class.
 void AbstractBinder.commit()
          This causes the configuration to get committed.
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.