@Component(immediate = true, property = {"service.ranking:Integer=100"}, service = AttributesTransformer.class) public class MyOwnAttributesTransformer implements AttributesTransformer {
@Override public Attributes transformGroup(Attributes attributes) { System.out.println("MyOwnAttributesTransformer > Here my attributes transformations for groups"); return attributes; }
@Override public Attributes transformUser(Attributes attributes) { System.out.println("MyOwnAttributesTransformer > Here my attributes transformations for users"); return attributes; }