Top Description Fields Constructors Methods
com.fasterxml.jackson.module.osgi

public Class OsgiInjectableValues

extends InjectableValues
Class Inheritance
Imports
org.osgi.framework.BundleContext, .InvalidSyntaxException, .ServiceReference, com.fasterxml.jackson.databind.BeanProperty, .DeserializationContext, .InjectableValues

Injects OSGI services in deserialized objects
Use the com.fasterxml.jackson.annotation.JacksonInject in the constructor parameters or the class members ask for injecting a matching OSGI services. Use the com.fasterxml.jackson.annotation.JacksonInject#value() to specify an OSGI filter to select more accurately the OSGI services. Null is injected when no matching OSGI service is registered.

Field Summary

Modifier and TypeField and Description
private final BundleContext

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public Object
findInjectableValue(Object
Object that identifies value to inject; may be a simple name or more complex identifier object, whatever provider needs
valueId
,
DeserializationContext
Deserialization context
ctxt
,
BeanProperty
Bean property in which value is to be injected
forProperty
,
Object
Bean instance that contains property to inject, if available; null if bean has not yet been constructed.
beanInstance
)

Implements abstract com.fasterxml.jackson.databind.InjectableValues.findInjectableValue.

Method called to find value identified by id valueId to inject as value of specified property during deserialization, passing POJO instance in which value will be injected if it is available (will be available when injected via field or setter; not available when injected via constructor or factory method argument).

private Object
findService(String type, String filter)

private String
private static String

Field Detail

bundleContextback to summary
private final BundleContext bundleContext

Constructor Detail

OsgiInjectableValuesback to summary
public OsgiInjectableValues(BundleContext bundleContext)

Method Detail

findInjectableValueback to summary
public Object findInjectableValue(Object valueId, DeserializationContext ctxt, BeanProperty forProperty, Object beanInstance)

Implements abstract com.fasterxml.jackson.databind.InjectableValues.findInjectableValue.

Doc from com.fasterxml.jackson.databind.InjectableValues.findInjectableValue.

Method called to find value identified by id valueId to inject as value of specified property during deserialization, passing POJO instance in which value will be injected if it is available (will be available when injected via field or setter; not available when injected via constructor or factory method argument).

Parameters
valueId:Object

Object that identifies value to inject; may be a simple name or more complex identifier object, whatever provider needs

ctxt:DeserializationContext

Deserialization context

forProperty:BeanProperty

Bean property in which value is to be injected

beanInstance:Object

Bean instance that contains property to inject, if available; null if bean has not yet been constructed.

Annotations
@Override
findServiceback to summary
private Object findService(String type, String filter)
serviceFilterback to summary
private String serviceFilter(Object valueId)
serviceTypeback to summary
private static String serviceType(BeanProperty forProperty)