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

From: cvs@openprivacy.org
Date: Fri Feb 09 2001 - 02:26:58 PST

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

    Date: Friday February 9, 19101 @ 2:26
    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

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

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

    Modified Files:
            RCE.java
    Log Message:
    start towards working out the payload/reputation structure

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

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

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

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

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/RCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.3 sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.4
    --- sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.3 Thu Feb 8 18:32:43 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/RCE.java Fri Feb 9 02:26:58 2001
    @@ -20,6 +20,8 @@
     //standard Java support
     import java.util.*;
     
    +//talon support
    +import talon.*;
     import talon.util.net.*;
     
     //sierra stuff
    @@ -34,15 +36,33 @@
      *
      * @see http://www.openprivacy.org
      * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
      */
     public interface RCE extends Component {
     
         /**
    + * Default handle for creating a reputation object.
    + */
    + public static final ComponentHandle SIERRA_DEFAULT_REPUTATION =
    + new ComponentHandle().setName( "sierra_default_reputation" );
    +
    + /**
    + * Default handle for creating a reference object.
    + */
    + public static final ComponentHandle SIERRA_DEFAULT_REFERENCE =
    + new ComponentHandle().setName( "sierra_default_reference" );
    +
    + /**
    + * Default handle for creating a payload object.
    + */
    + public static final ComponentHandle SIERRA_DEFAULT_PAYLOAD =
    + new ComponentHandle().setName( "sierra_default_payload" );
    +
    + /**
          *
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
          */
         public Reputation getReputation( RCEContext context, String reference ) throws SierraException;
     
    @@ -50,7 +70,7 @@
         /**
          * @see getReputation( context, reference )
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
          */
         public Reputation getReputation( String reference ) throws SierraException;
         
    @@ -58,14 +78,14 @@
          *
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
          */
         public void putReputation( RCEContext context, Reputation reputation ) throws SierraException;
     
         /**
          * @see putReputation( context, reference )
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
          */
         public void putReputation( Reputation reputation ) throws SierraException;
         
    @@ -73,7 +93,7 @@
          * Execute an XPath query on this RCE.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
          */
         //public Result execute( String query );
         
    @@ -81,7 +101,7 @@
          * Determine the principal under which this RCE is running.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
          */
         public URI getPrincipal() throws SierraException;
         
    @@ -90,7 +110,7 @@
          * Execute the given Query and return the Result.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
    + * @version $Id: RCE.java,v 1.4 2001/02/09 10:26:58 burton Exp $
          */
         public Result execute( Query query ) throws SierraException;
         



    This archive was generated by hypermail 2b30 : Fri Feb 09 2001 - 02:29:00 PST