Пример #1
0
 @GET
 @Produces(MediaType.APPLICATION_JSON)
 public Response getSaml() throws Exception {
   return runService(securityFactory.getSaml());
 }
Пример #2
0
 @PUT
 @Consumes(MediaType.APPLICATION_JSON)
 @Produces(MediaType.APPLICATION_JSON)
 public Response updateSaml(Saml saml) throws Exception {
   return runService(securityFactory.updateSaml(), saml);
 }