Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
Hi Team,
Please help me in converting the below scr annotations to osgi annotations for aem 6.4.
@SlingFilter(label="my label" , description = "my desc" , metatype = false, order = -9999)
@Properties({@Property(label = "my label" , description = "my description", name="pattern" , value = "/.*")});
public class MyClass implements Filter
{
}
Thanks,
Preetham K.R
Solved! Go to Solution.
@Component(service = Filter.class, property = {
Constants.SERVICE_DESCRIPTION + "= Filter incoming requests and create cookie",
EngineConstants.SLING_FILTER_SCOPE + "=" + EngineConstants.FILTER_SCOPE_REQUEST,
"sling.filter.pattern=/.*",
Constants.SERVICE_RANKING + "=-700"
})
View solution in original post
Views
Likes
Replies