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

From: cvs@openprivacy.org
Date: Thu Feb 08 2001 - 18:32:44 PST

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

    Date: Thursday February 8, 19101 @ 18:32
    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-serv21733/src/java/org/openprivacy/sierra/rce

    Modified Files:
            RCE.java
    Log Message:
    exceptions on every method within an RCE...

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

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

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

    Index: sierra/src/java/org/openprivacy/sierra/rce/RCE.java
    diff -u sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.2 sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.3
    --- sierra/src/java/org/openprivacy/sierra/rce/RCE.java:1.2 Thu Feb 1 15:50:44 2001
    +++ sierra/src/java/org/openprivacy/sierra/rce/RCE.java Thu Feb 8 18:32:43 2001
    @@ -20,7 +20,6 @@
     //standard Java support
     import java.util.*;
     
    -//FIXME: did this show up??
     import talon.util.net.*;
     
     //sierra stuff
    @@ -35,7 +34,7 @@
      *
      * @see http://www.openprivacy.org
      * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
      */
     public interface RCE extends Component {
     
    @@ -43,38 +42,38 @@
          *
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
          */
    - public Reputation getReputation( RCEContext context, String reference ) throws ReputationNotFoundException;
    + public Reputation getReputation( RCEContext context, String reference ) throws SierraException;
     
     
         /**
          * @see getReputation( context, reference )
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
          */
    - public Reputation getReputation( String reference ) throws ReputationNotFoundException;
    + public Reputation getReputation( String reference ) throws SierraException;
         
         /**
          *
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: RCE.java,v 1.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
          */
    - public void putReputation( RCEContext context, Reputation reputation );
    + 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.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
          */
    - public void putReputation( Reputation reputation );
    + public void putReputation( Reputation reputation ) throws SierraException;
         
         /**
          * 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.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
          */
         //public Result execute( String query );
         
    @@ -82,19 +81,18 @@
          * 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.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
          */
    - public URI getPrincipal();
    + public URI getPrincipal() throws SierraException;
         
     
         /**
          * 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.2 2001/02/01 23:50:44 burton Exp $
    + * @version $Id: RCE.java,v 1.3 2001/02/09 02:32:43 burton Exp $
          */
         public Result execute( Query query ) throws SierraException;
    -
         
     }
     



    This archive was generated by hypermail 2b30 : Thu Feb 08 2001 - 18:33:14 PST