Author: agilliland
Date: Wed Apr 19 10:56:42 2006
New Revision: 395323
URL: http://svn.apache.org/viewcvs?rev=395323&view=rev
Log:
code reformatting.
Modified:
incubator/roller/branches/roller-newbackend/src/org/roller/model/PropertiesManager.java
Modified:
incubator/roller/branches/roller-newbackend/src/org/roller/model/PropertiesManager.java
URL:
http://svn.apache.org/viewcvs/incubator/roller/branches/roller-newbackend/src/org/roller/model/PropertiesManager.java?rev=395323&r1=395322&r2=395323&view=diff
==============================================================================
---
incubator/roller/branches/roller-newbackend/src/org/roller/model/PropertiesManager.java
(original)
+++
incubator/roller/branches/roller-newbackend/src/org/roller/model/PropertiesManager.java
Wed Apr 19 10:56:42 2006
@@ -12,27 +12,37 @@
import org.roller.pojos.RollerPropertyData;
/**
- *
- * @author Allen Gilliland
+ * Manages global properties for Roller.
*/
-public interface PropertiesManager extends Serializable
-{
+public interface PropertiesManager extends Serializable {
/**
* Release all resources associated with Roller session.
*/
public void release();
-
- /** Save a single property */
+
+
+ /**
+ * Save a single property
+ */
public void store(RollerPropertyData property) throws RollerException;
- /** Save a list of properties */
+
+ /**
+ * Save a list of properties
+ */
public void store(Map properties) throws RollerException;
- /** Retrieve a single property by name */
+
+ /**
+ * Retrieve a single property by name
+ */
public RollerPropertyData getProperty(String name) throws RollerException;
- /** Retrieve a list of all properties */
+
+ /**
+ * Retrieve a list of all properties
+ */
public Map getProperties() throws RollerException;
}