You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrf-commits@ws.apache.org by sc...@apache.org on 2005/07/26 19:31:16 UTC

svn commit: r225362 - /webservices/wsrf/trunk/src/java/org/apache/ws/resource/PersistentResource.java

Author: scamp
Date: Tue Jul 26 10:31:14 2005
New Revision: 225362

URL: http://svn.apache.org/viewcvs?rev=225362&view=rev
Log:
Re-Added

Added:
    webservices/wsrf/trunk/src/java/org/apache/ws/resource/PersistentResource.java

Added: webservices/wsrf/trunk/src/java/org/apache/ws/resource/PersistentResource.java
URL: http://svn.apache.org/viewcvs/webservices/wsrf/trunk/src/java/org/apache/ws/resource/PersistentResource.java?rev=225362&view=auto
==============================================================================
--- webservices/wsrf/trunk/src/java/org/apache/ws/resource/PersistentResource.java (added)
+++ webservices/wsrf/trunk/src/java/org/apache/ws/resource/PersistentResource.java Tue Jul 26 10:31:14 2005
@@ -0,0 +1,17 @@
+package org.apache.ws.resource;
+
+
+/**
+ * An interface to be implemented by a resource which
+ * wants to be persisted.
+ *
+ * @author Sal Campana
+ */
+public interface PersistentResource
+{
+
+    void load() throws ResourceException;
+
+    void store() throws ResourceException;
+
+}