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

From: cvs@openprivacy.org
Date: Wed Mar 21 2001 - 15:40:50 PST

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

    Date: Wednesday March 21, 19101 @ 15:40
    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/components

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

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

    Modified Files:
            RCE.java
    Log Message:
    removed RCEContext from the RCE component

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

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

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

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

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/talon/components/RCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/talon/components/RCE.java:1.2 sierra/src/java/org/openprivacy/sierra/rce/talon/components/RCE.java:1.3
    --- sierra/src/java/org/openprivacy/sierra/rce/talon/components/RCE.java:1.2 Wed Mar 21 12:59:35 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/talon/components/RCE.java Wed Mar 21 15:40:50 2001
    @@ -1,7 +1,7 @@
     /*
      * ----
      *
    - * $Id: RCE.java,v 1.2 2001/03/21 20:59:35 burton Exp $
    + * $Id: RCE.java,v 1.3 2001/03/21 23:40:50 burton Exp $
      * $Project: http://sierra.openprivacy.org $
      * $CVSROOT: :pserver:anoncvs@sierra.openprivacy.org:/usr/local/cvs/public $
      * $WebCVS: http://www.openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/ $
    @@ -60,26 +60,21 @@
      *
      * @see http://www.openprivacy.org
      * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/03/21 20:59:35 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/03/21 23:40:50 burton Exp $
      */
     public interface RCE extends Component {
     
         /**
    - * Get a reputation from the given RCEContext. The RCE should pay attention
    - * to the context and use it to serve the appropriate Reputation object.
    + * <p>
    + * Given a Reference obtain a Reputation object which contains additional
    + * information. This would usually be a payload with additional data.
    + *
    + * <p>
          * The Reference is used as a pointer to information which should be used to
          * obtain aggregate reputation objects.
          *
    - * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/03/21 20:59:35 burton Exp $
    - */
    - public Reputation getReputation( RCEContext context, Reference reference ) throws SierraException;
    -
    -
    - /**
    - * @see #putReputation(RCEContext, Reputation)
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/03/21 20:59:35 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/03/21 23:40:50 burton Exp $
          */
         public Reputation getReputation( Reference reference ) throws SierraException;
         
    @@ -92,15 +87,8 @@
          * sub-components are used to index/manage Reputation object their
          * reputation can be used to determine if they are supported.
          *
    - * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/03/21 20:59:35 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.2 2001/03/21 20:59:35 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/03/21 23:40:50 burton Exp $
          */
         public void putReputation( Reputation reputation ) throws SierraException;
         
    @@ -108,7 +96,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.2 2001/03/21 20:59:35 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/03/21 23:40:50 burton Exp $
          */
         public Nym getNym() throws SierraException;
     
    @@ -117,7 +105,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.2 2001/03/21 20:59:35 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/03/21 23:40:50 burton Exp $
          */
         public QueryEngine getQueryEngine() throws SierraException;
     
    @@ -126,7 +114,7 @@
          *
          * @deprecated Does another object really need the Store that this RCE is using???
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/03/21 20:59:35 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/03/21 23:40:50 burton Exp $
          */
         public StoreEngine getStoreEngine() throws SierraException;
         



    This archive was generated by hypermail 2b30 : Wed Mar 21 2001 - 15:41:22 PST