Package org.apache.felix.scr.impl.inject
Interface ReferenceMethods
- All Known Implementing Classes:
BindMethods
,DuplexReferenceMethods
,FieldMethods
public interface ReferenceMethods
ReferenceMethods
holds pointers to methods for a single reference.
The methods are used for event (method) injection and field injection.
- The bind method
- The unbind method
- The updated method
- The init method (optional, only used for field references)
-
Field Summary
Fields -
Method Summary
-
Field Details
-
NOPReferenceMethod
This is a NOP implementation.
-
-
Method Details
-
getBind
ReferenceMethod getBind()Get the method to bind a service. Never returnsnull
. -
getUnbind
ReferenceMethod getUnbind()Get the method to unbind a service. Never returnsnull
. -
getUpdated
ReferenceMethod getUpdated()Get the method to update a service. Never returnsnull
. -
getInit
InitReferenceMethod getInit()Get an optional method to initialize the component reference handling. This is optional and might returnnull
-