Skip to content

Commit

Permalink
fix(jans-auth-server): added SessionRestWebService to rest initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyz committed May 26, 2022
1 parent 187cc07 commit f0ebf67
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import io.jans.as.server.revoke.RevokeSessionRestWebService;
import io.jans.as.server.session.ws.rs.CheckSessionStatusRestWebServiceImpl;
import io.jans.as.server.session.ws.rs.EndSessionRestWebServiceImpl;
import io.jans.as.server.session.ws.rs.SessionRestWebService;
import io.jans.as.server.token.ws.rs.TokenRestWebServiceImpl;
import io.jans.as.server.uma.ws.rs.UmaGatheringWS;
import io.jans.as.server.uma.ws.rs.UmaMetadataWS;
Expand Down Expand Up @@ -47,7 +48,7 @@ public class ResteasyInitializer extends Application {

@Override
public Set<Class<?>> getClasses() {
HashSet<Class<?>> classes = new HashSet<Class<?>>();
HashSet<Class<?>> classes = new HashSet<>();
classes.add(JansConfigurationWS.class);

classes.add(AuthorizeRestWebServiceImpl.class);
Expand All @@ -58,6 +59,7 @@ public Set<Class<?>> getClasses() {
classes.add(JwkRestWebServiceImpl.class);
classes.add(IntrospectionWebService.class);
classes.add(ParRestWebService.class);
classes.add(SessionRestWebService.class);

classes.add(TokenRestWebServiceImpl.class);
classes.add(UserInfoRestWebServiceImpl.class);
Expand Down

0 comments on commit f0ebf67

Please sign in to comment.