Package org.geoserver.security

Examples of org.geoserver.security.ServiceAccessRuleDAO


      String roles = parseRole(rolesForComponent.getRolePalette()
          .getModelObjectAsString());
      ServiceAccessRule rule = new ServiceAccessRule((String) service
          .getConvertedInput(), (String) method
          .getConvertedInput(), roles);
      ServiceAccessRuleDAO dao = ServiceAccessRuleDAO.get();
      dao.addRule(rule);
      dao.storeRules();
      setResponsePage(ServiceAccessRulePage.class);
    } catch (Exception e) {
      LOGGER.log(Level.SEVERE, "Error occurred while saving user", e);
      error(new ParamResourceModel("saveError", getPage(), e.getMessage()));
    }
View Full Code Here


                };
            }

            protected boolean onSubmit(AjaxRequestTarget target, Component contents) {
                // cascade delete the whole selection
                ServiceAccessRuleDAO dao = ServiceAccessRuleDAO.get();
                for (ServiceAccessRule service : selection) {
                    dao.removeRule(service);
                }
                try {
                    dao.storeRules();
                } catch (IOException e) {
                    e.printStackTrace();
                }

                // the deletion will have changed what we see in the page
View Full Code Here

    }

    @Override
    protected void onFormSubmit() {
        try {
            ServiceAccessRuleDAO dao = ServiceAccessRuleDAO.get();
            dao.addRule((ServiceAccessRule) getModelObject());
            dao.storeRules();
            setResponsePage(ServiceAccessRulePage.class);
        } catch(Exception e) {
            LOGGER.log(Level.SEVERE, "Error occurred while saving service", e);
            error(new ParamResourceModel("saveError", getPage(), e.getMessage()));
        }
View Full Code Here

TOP

Related Classes of org.geoserver.security.ServiceAccessRuleDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.