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

From: cvs@openprivacy.org
Date: Sun Feb 18 2001 - 23:49:28 PST

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

    Date: Sunday February 18, 19101 @ 23:49
    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-serv26193/src/java/org/openprivacy/sierra/rce

    Modified Files:
            RCE.java
    Log Message:
    migrating certain things into SierraResources...

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

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

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/RCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.5 sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.6
    --- sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.5 Sun Feb 18 22:50:29 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/RCE.java Sun Feb 18 23:49:28 2001
    @@ -36,33 +36,15 @@
      *
      * @see http://www.openprivacy.org
      * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 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.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 burton Exp $
          */
         public Reputation getReputation( RCEContext context, String reference ) throws SierraException;
     
    @@ -70,7 +52,7 @@
         /**
          * @see getReputation( context, reference )
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 burton Exp $
          */
         public Reputation getReputation( String reference ) throws SierraException;
         
    @@ -78,14 +60,14 @@
          *
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 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.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 burton Exp $
          */
         public void putReputation( Reputation reputation ) throws SierraException;
         
    @@ -93,7 +75,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.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 burton Exp $
          */
         //public Result execute( String query );
         
    @@ -101,7 +83,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.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 burton Exp $
          */
         public URI getPrincipal() throws SierraException;
         
    @@ -110,7 +92,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.5 2001/02/19 06:50:29 burton Exp $
    + * @version $Id: RCE.java,v 1.6 2001/02/19 07:49:28 burton Exp $
          */
         public Result execute( Query query ) throws SierraException;
         



    This archive was generated by hypermail 2b30 : Sun Feb 18 2001 - 23:50:00 PST