CVS update: sierra/src/java/org/openprivacy/soap/service/reputation

From: cvs@openprivacy.org
Date: Wed Jan 03 2001 - 13:47:49 PST


Date: Wednesday January 3, 19101 @ 13:47
Author: burton
CVSWEB Options: -------------------

Main CVSWeb: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi

View this module: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/soap/service/reputation

-----------------------------------

Update of /usr/local/cvsroot/sierra/src/java/org/openprivacy/soap/service/reputation
In directory openprivacy.org:/tmp/cvs-serv15362

Modified Files:
        Reputation.java
Log Message:
...

*****************************************************************
File: sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java

CVSWEB Options: -------------------

CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java?annotate=1.2

CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java?rev=1.2&content-type=text/x-cvsweb-markup

CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java.diff?r1=1.2&r2=1.1

-----------------------------------

Index: sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java
diff -u sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java:1.1 sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java:1.2
--- sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java:1.1 Wed Jan 3 13:23:38 2001
+++ sierra/src/java/org/openprivacy/soap/service/reputation/Reputation.java Wed Jan 3 13:47:49 2001
@@ -31,25 +31,27 @@
 
    @see http://www.openprivacy.org
    @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- @version $Id: Reputation.java,v 1.1 2001/01/03 21:23:38 burton Exp $
+ @version $Id: Reputation.java,v 1.2 2001/01/03 21:47:49 burton Exp $
 */
-public class Reputation {
+public class Reputation
+{
 
     public static final String REPUTATION_RESULT_NAMESPACE
         = "http://schemas.openprivacy.org/core/reputation/12/2000/";
     
     /**
- Given a URI for a reputation return its value.
-
- @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- @version $Id: Reputation.java,v 1.1 2001/01/03 21:23:38 burton Exp $
+ * Given a URI for a reputation return its value.
+ *
+ * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
+ * @version $Id: Reputation.java,v 1.2 2001/01/03 21:47:49 burton Exp $
     */
- public Element getReputation( String uri ) {
+ public Element getReputation( String uri )
+ {
         DocumentImpl doc = new DocumentImpl();
 
         Element element = new ResponseElement( doc,
                                                REPUTATION_RESULT_NAMESPACE,
- "ReputationResult" );
+ "Reputation" );
 
         return element;
     }
@@ -58,10 +60,9 @@
 
 
      */
- public Element putReputation( String uri ) {
-
+ public Element putReputation( String uri )
+ {
         return null;
-
     }
     
 }
@@ -73,14 +74,15 @@
  * that we can use ElementNSImpl within our Reputation service.
    
  @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- @version $Id: Reputation.java,v 1.1 2001/01/03 21:23:38 burton Exp $
+ @version $Id: Reputation.java,v 1.2 2001/01/03 21:47:49 burton Exp $
  */
-class ResponseElement extends ElementNSImpl {
-
+class ResponseElement extends ElementNSImpl
+{
 
     public ResponseElement( DocumentImpl ownerDocument,
                             String namespaceURI,
- String qualifiedName ) {
+ String qualifiedName )
+ {
         super( ownerDocument, namespaceURI, qualifiedName );
     }
                            



This archive was generated by hypermail 2b30 : Mon Jan 22 2001 - 15:52:14 PST