com.sun.jersey.spi.resource
Class ResourceClassInjector

java.lang.Object
  extended by com.sun.jersey.spi.resource.ResourceClassInjector

public final class ResourceClassInjector
extends java.lang.Object

An injector that injects onto properties of a resource. Analysis of the class will be performed using reflection to find Injectable instances and as a result the use of reflection is minimized when performing injection.

Author:
Paul.Sandoz@Sun.Com

Constructor Summary
ResourceClassInjector(InjectableProviderContext ipc, ComponentProvider.Scope s, AbstractResource resource)
          Create a new resource class injector.
 
Method Summary
 void inject(HttpContext c, java.lang.Object o)
          Inject onto an instance of a resource class.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ResourceClassInjector

public ResourceClassInjector(InjectableProviderContext ipc,
                             ComponentProvider.Scope s,
                             AbstractResource resource)
Create a new resource class injector.

Parameters:
ipc - the injectable provider context to obtain injectables.
s - the scope underwhich injection will be performed.
resource - the abstract resource model.
Method Detail

inject

public void inject(HttpContext c,
                   java.lang.Object o)
Inject onto an instance of a resource class.

Parameters:
c - the HTTP context, may be set to null if not available for the current scope.
o - the resource.


Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved.