taylor 2004/10/20 09:29:18
Modified: jetspeed-api/src/java/org/apache/jetspeed/profiler
Profiler.java
Log:
maintenance apis for persisting rules
Revision Changes Path
1.11 +23 -2
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/profiler/Profiler.java
Index: Profiler.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/profiler/Profiler.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Profiler.java 15 Oct 2004 07:07:49 -0000 1.10
+++ Profiler.java 20 Oct 2004 16:29:18 -0000 1.11
@@ -139,7 +139,28 @@
* @return
* @throws ProfilerException
*/
- public Map getProfileLocators(RequestContext context, Principal principal)
+ Map getProfileLocators(RequestContext context, Principal principal)
+ throws ProfilerException;
+
+ /*
+ * Persist a new profiling rule to the persistent store.
+ *
+ */
+ void addProfilingRule(ProfilingRule rule)
+ throws ProfilerException;
+
+ /*
+ * Persist an existing profiling rule to the persistent store.
+ *
+ */
+ void updateProfilingRule(ProfilingRule rule)
+ throws ProfilerException;
+
+ /*
+ * Remove a profiling rule from the persistent store.
+ *
+ */
+ void removeProfilingRule(ProfilingRule rule)
throws ProfilerException;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]