CVS update: sierra/src/java/org/openprivacy/sierra/rce/impls

From: cvs@openprivacy.org
Date: Fri Jan 26 2001 - 05:57:04 PST

  • Next message: cvs@openprivacy.org: "CVS update: sierra/src/java/org/openprivacy/sierra/util"

    Date: Friday January 26, 19101 @ 5:57
    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/sierra/rce/impls

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

    Update of /usr/local/cvs/public/sierra/src/java/org/openprivacy/sierra/rce/impls
    In directory giga:/tmp/cvs-serv9464/src/java/org/openprivacy/sierra/rce/impls

    Modified Files:
            MeanRCE.java SOAPServiceRCE.java
    Log Message:
    Everthing now uses a URI instead of a URIReference

    *****************************************************************
    File: sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java

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

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java?annotate=1.3

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java?rev=1.3&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java.diff?r1=1.3&r2=1.2

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java:1.2 sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java:1.3
    --- sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java:1.2 Fri Jan 26 03:21:20 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java Fri Jan 26 05:57:04 2001
    @@ -19,8 +19,10 @@
     
     //standard Java support
     import java.util.*;
    -import java.net.URI;
     
    +//talon stuff
    +import talon.util.net.*;
    +
     //sierra stuff
     import org.openprivacy.sierra.*;
     import org.openprivacy.sierra.util.*;
    @@ -36,7 +38,7 @@
      *
      * @see http://www.openprivacy.org
      * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
      */
     public class MeanRCE extends BaseComponent implements ReputationCalculationEngine {
     
    @@ -48,14 +50,14 @@
         /**
          * @see Component
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public void init() { }
         
         /**
          * @see ReputationCalculationEngine.getReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public Reputation getReputation( ReputationContext context, String reference ) throws ReputationNotFoundException {
     
    @@ -73,7 +75,7 @@
         /**
          * @see ReputationCalculationEngine.getReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public Reputation getReputation( String reference ) throws ReputationNotFoundException {
     
    @@ -84,7 +86,7 @@
         /**
          * @see ReputationCalculationEngine.putReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public void putReputation( ReputationContext context, Reputation reputation ) {
             map.putReputation( reputation );
    @@ -93,7 +95,7 @@
         /**
          * @see ReputationCalculationEngine.putReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public void putReputation( Reputation reputation ) {
             putReputation( new ReputationContext(), reputation );
    @@ -110,7 +112,7 @@
      * Internally stores a mechanism to map references (URIs) to lists of Reputations.
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
      */
     class ReputationPrincipalMap {
     
    @@ -137,7 +139,7 @@
          * Get a Vector of reputations from the references has or return a new one.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         private Vector getVector( String reference ) {
     

    *****************************************************************
    File: sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java

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

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java?annotate=1.3

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java?rev=1.3&content-type=text/x-cvsweb-markup

    CVSWeb: Diff to previous version: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java.diff?r1=1.3&r2=1.2

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java:1.2 sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java:1.3
    --- sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java:1.2 Fri Jan 26 03:21:20 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java Fri Jan 26 05:57:04 2001
    @@ -19,7 +19,7 @@
     
     //standard Java support
     import java.util.*;
    -import java.net.URI;
    +import talon.util.net.*;
     
     //DOM support
     import org.w3c.dom.*;
    @@ -40,7 +40,7 @@
     
        @see http://www.openprivacy.org
        @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - @version $Id: SOAPServiceRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
     */
     public class SOAPServiceRCE extends BaseComponent implements ReputationCalculationEngine {
     
    @@ -59,14 +59,14 @@
         /**
          * @see Component
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public void init() { }
         
         /**
          * @see ReputationCalculationEngine.getReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public Reputation getReputation( ReputationContext context,
                                          String reference ) throws ReputationNotFoundException {
    @@ -86,7 +86,7 @@
         /**
          * @see ReputationCalculationEngine.getReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
         */
         public Reputation getReputation( String reference ) throws ReputationNotFoundException {
             return getReputation( new ReputationContext(), reference );
    @@ -95,7 +95,7 @@
         /**
          * @see ReputationCalculationEngine.putReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public void putReputation( ReputationContext context,
                                    Reputation reputation ) {
    @@ -114,7 +114,7 @@
         /**
          * @see ReputationCalculationEngine.putReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public void putReputation( Reputation reputation ) {
             putReputation( new ReputationContext(), reputation );
    @@ -123,7 +123,7 @@
         /**
          * @see ReputationCalculationEngine.getPrincipal#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.2 2001/01/26 11:21:20 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
          */
         public URI getPrincipal() {
             return this.principal;



    This archive was generated by hypermail 2b30 : Fri Jan 26 2001 - 05:57:35 PST