This project has retired. For details please refer to its Attic page.
org.apache.polygene.api.service.qualifier (Apache Polygeneâ„¢ (Java Edition) SDK 3.0.0)
Skip navigation links

Package org.apache.polygene.api.service.qualifier

Service Qualifiers.

See: Description

Package org.apache.polygene.api.service.qualifier Description

Service Qualifiers.

The @Service injection is only able to specify the type of the service to be injected. If any other type of qualification has to be done it has to be done manually but for common cases it's more convenient to use annotations to do this filtering. This package contains annotations to perform this qualification.

Example:

@Service @Tagged( "sometag" ) MyService service;

This will only inject instances of MyService that have been tagged with "sometag". If none exist an exception will occur at injection time since it is not optional.

It also works with iterables:

@Service @Tagged( "sometag" ) Iterable<MyService> services;

The qualification will be evaluated upon each call to iterator(), and since the qualifier has access to a ServiceReference, which contains the isActive() method, it can even provide some dynamicity.

@Service @Active Iterable<SomeImportedService> importedServices;

Let's say these SomeImportedService are only sometimes available. Then whenever iterator() is called the Active tag can kick in and filter out those whose ServiceReference.isActive() returns false.

Standard ones defined in the API are:

See tests and API for more examples, and how to implement your own qualifiers.

Skip navigation links