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

From: cvs@openprivacy.org
Date: Mon Jan 29 2001 - 16:45:39 PST

  • Next message: cvs@openprivacy.org: "CVS update: sierra/docs"

    Date: Monday January 29, 19101 @ 16:45
    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-serv14317/impls

    Modified Files:
            MeanRCE.java SOAPServiceRCE.java
    Log Message:
    migrated object names correctly

    *****************************************************************
    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.4

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java?rev=1.4&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.4&r2=1.3

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java:1.3 sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java:1.4
    --- sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java:1.3 Fri Jan 26 05:57:04 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/impls/MeanRCE.java Mon Jan 29 16:45:39 2001
    @@ -38,9 +38,9 @@
      *
      * @see http://www.openprivacy.org
      * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
      */
    -public class MeanRCE extends BaseComponent implements ReputationCalculationEngine {
    +public class MeanRCE extends BaseComponent implements RCE {
     
     
         ReputationPrincipalMap map = new ReputationPrincipalMap();
    @@ -50,16 +50,16 @@
         /**
          * @see Component
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
         public void init() { }
         
         /**
    - * @see ReputationCalculationEngine.getReputation#
    + * @see RCE.getReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
    - public Reputation getReputation( ReputationContext context, String reference ) throws ReputationNotFoundException {
    + public Reputation getReputation( RCEContext context, String reference ) throws ReputationNotFoundException {
     
             Reputation[] reps = map.getReputations( reference );
     
    @@ -73,32 +73,32 @@
     
     
         /**
    - * @see ReputationCalculationEngine.getReputation#
    + * @see RCE.getReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
         public Reputation getReputation( String reference ) throws ReputationNotFoundException {
     
    - return getReputation( new ReputationContext(), reference );
    + return getReputation( new RCEContext(), reference );
         }
     
         
         /**
    - * @see ReputationCalculationEngine.putReputation#
    + * @see RCE.putReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
    - public void putReputation( ReputationContext context, Reputation reputation ) {
    + public void putReputation( RCEContext context, Reputation reputation ) {
             map.putReputation( reputation );
         }
     
         /**
    - * @see ReputationCalculationEngine.putReputation#
    + * @see RCE.putReputation#
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: MeanRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
         public void putReputation( Reputation reputation ) {
    - putReputation( new ReputationContext(), reputation );
    + putReputation( new RCEContext(), reputation );
         }
     
         
    @@ -112,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.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
      */
     class ReputationPrincipalMap {
     
    @@ -139,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.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: MeanRCE.java,v 1.4 2001/01/30 00:45:39 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.4

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java?rev=1.4&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.4&r2=1.3

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java:1.3 sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java:1.4
    --- sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java:1.3 Fri Jan 26 05:57:04 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/impls/SOAPServiceRCE.java Mon Jan 29 16:45:39 2001
    @@ -40,9 +40,9 @@
     
        @see http://www.openprivacy.org
        @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + @version $Id: SOAPServiceRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
     */
    -public class SOAPServiceRCE extends BaseComponent implements ReputationCalculationEngine {
    +public class SOAPServiceRCE extends BaseComponent implements RCE {
     
         public static final String REPUTATION_RESULT_NAMESPACE
             = "http://schemas.openprivacy.org/core/reputation/12/2000/";
    @@ -59,16 +59,16 @@
         /**
          * @see Component
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
         public void init() { }
         
         /**
    - * @see ReputationCalculationEngine.getReputation#
    + * @see RCE.getReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
    - public Reputation getReputation( ReputationContext context,
    + public Reputation getReputation( RCEContext context,
                                          String reference ) throws ReputationNotFoundException {
     
             System.out.println( "getReputation: " + reference );
    @@ -84,20 +84,20 @@
         }
     
         /**
    - * @see ReputationCalculationEngine.getReputation#
    + * @see RCE.getReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
         */
         public Reputation getReputation( String reference ) throws ReputationNotFoundException {
    - return getReputation( new ReputationContext(), reference );
    + return getReputation( new RCEContext(), reference );
         }
         
         /**
    - * @see ReputationCalculationEngine.putReputation#
    + * @see RCE.putReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
    - public void putReputation( ReputationContext context,
    + public void putReputation( RCEContext context,
                                    Reputation reputation ) {
     
             System.out.println( "putReputation: " + reputation.getReference() );
    @@ -112,18 +112,18 @@
         }
     
         /**
    - * @see ReputationCalculationEngine.putReputation#
    + * @see RCE.putReputation#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
         public void putReputation( Reputation reputation ) {
    - putReputation( new ReputationContext(), reputation );
    + putReputation( new RCEContext(), reputation );
         }
         
         /**
    - * @see ReputationCalculationEngine.getPrincipal#
    + * @see RCE.getPrincipal#
          * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: SOAPServiceRCE.java,v 1.3 2001/01/26 13:57:04 burton Exp $
    + * @version $Id: SOAPServiceRCE.java,v 1.4 2001/01/30 00:45:39 burton Exp $
          */
         public URI getPrincipal() {
             return this.principal;



    This archive was generated by hypermail 2b30 : Mon Jan 29 2001 - 16:46:10 PST