View Javadoc

1   package org.jcr_blog.service.jmx;
2   
3   import java.io.IOException;
4   import org.jcr_blog.service.JcrBlogException;
5   
6   public interface JcrBlogMXBean {
7       void initBlog(String blog) throws JcrBlogException, IOException ;
8       /**
9        * Removes all data and creates initial structure for the blogging system.
10       * @throws JcrBlogException 
11       */
12      void resetDataStore() throws JcrBlogException, IOException ;
13  }