CVS update: sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces

From: cvs@openprivacy.org
Date: Thu Mar 01 2001 - 17:27:34 PST

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

    Date: Thursday March 1, 19101 @ 17:27
    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/talon/interfaces

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

    Update of /usr/local/cvs/public/sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces
    In directory giga:/tmp/cvs-serv16543/src/java/org/openprivacy/sierra/rce/talon/interfaces

    Modified Files:
            RCE.java
    Log Message:
    ...

    *****************************************************************
    File: sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java

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

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java?annotate=1.5

    CVSWeb: View this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java?rev=1.5&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/talon/interfaces/RCE.java.diff?r1=1.5&r2=1.4

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java:1.4 sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java:1.5
    --- sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java:1.4 Sun Feb 25 15:11:38 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/talon/interfaces/RCE.java Thu Mar 1 17:27:34 2001
    @@ -35,22 +35,20 @@
     import talon.util.net.*;
     
     /**
    - * <p>
    - * Abstraction of a ReputationCalculationEngine (RCE). This is basically a
    - * mechanism to abstract the calcluation of a Reputation. Reputations
    - * (opinions) can be added to an RCE and then the RCE can provide some
    - * mechanism to respond with for getReputation.
    + * <p> Abstraction of a Reputation Calculation Engine (RCE). This is basically
    + * a mechanism to abstract the calcluation of a Reputation. Reputations
    + * (opinions) can be added to an RCE and then the RCE can provide some mechanism
    + * to respond with for getReputation.
      *
    - * <p>
    - * Generally an RCE just provides the calculation of an aggregated set of
    + * <p> Generally an RCE just provides the calculation of an aggregated set of
      * Reputations. For persistence and performance reasons an RCE should use a
      * Store component to handle its own persistence. The RCE should use a
      * StoreManager so that Sierra can be deployed with the correct RCE -> Store
    - * mapping.
    + * mapping.
      *
      * @see http://www.openprivacy.org
      * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
      */
     public interface RCE extends Component {
     
    @@ -61,7 +59,7 @@
          * obtain aggregate reputation objects.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
          */
         public Reputation getReputation( RCEContext context, Reference reference ) throws SierraException;
     
    @@ -69,21 +67,21 @@
         /**
          * @see #putReputation(RCEContext, Reputation)
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
          */
         public Reputation getReputation( Reference reference ) throws SierraException;
         
         /**
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
          */
         public void putReputation( RCEContext context, Reputation reputation ) throws SierraException;
     
         /**
          * @see #putReputation(RCEContext, Reference)
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
          */
         public void putReputation( Reputation reputation ) throws SierraException;
         
    @@ -91,7 +89,7 @@
          * Determine the Nym under which this RCE is running.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
          */
         public Nym getNym() throws SierraException;
     
    @@ -100,7 +98,7 @@
          * queries on this RCE by obtaining its default QueryEngine.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
          */
         public QueryEngine getQueryEngine() throws SierraException;
     
    @@ -108,7 +106,7 @@
          * Return the StoreEngine used by this RCE.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.4 2001/02/25 23:11:38 burton Exp $
    + * @version $Id: RCE.java,v 1.5 2001/03/02 01:27:34 burton Exp $
          */
         public StoreEngine getStoreEngine() throws SierraException;
         



    This archive was generated by hypermail 2b30 : Thu Mar 01 2001 - 17:28:06 PST