Package net.sourceforge.pebble.domain

Examples of net.sourceforge.pebble.domain.Blog.storeProperties()


      if (checkbox == null) {
        blog.setProperty(name, "false");
      }

      try {
        blog.storeProperties();
        blog.info("Blog properties saved.");
      } catch (BlogServiceException e) {
        throw new ServletException(e);
      }
View Full Code Here


          blog.setProperty(key, builder.toString());
        }
      }

      try {
        blog.storeProperties();
        blog.getPluginProperties().store();
      } catch (BlogServiceException e) {
        throw new ServletException(e);
      }
    }
View Full Code Here

      }
    }
    blog.setProperty(Blog.BLOG_READERS_KEY, blogReaders.toString());

    try {
      blog.storeProperties();
      blog.info("Blog security settings saved.");
    } catch (BlogServiceException e) {
      throw new ServletException(e);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.