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

From: cvs@openprivacy.org
Date: Sun Feb 18 2001 - 22:50:29 PST

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

    Date: Sunday February 18, 19101 @ 22:50
    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/nym/talon/interfaces

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

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

    Modified Files:
            Nym.java NymBuilder.java
    Log Message:
    update from over weekend. clean up copyright... more work on store

    *****************************************************************
    File: sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/Nym.java

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

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/Nym.java?annotate=1.2

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

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

    Index: sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/Nym.java
    diff -u sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/Nym.java:1.1 sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/Nym.java:1.2
    --- sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/Nym.java:1.1 Fri Feb 9 14:39:11 2001
    +++ sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/Nym.java Sun Feb 18 22:50:29 2001
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2000 OpenPrivacy.org. All rights reserved.
    + * Copyright 2001 OpenPrivacy.org. All rights reserved.
      *
      * This program is free software; you can redistribute it and/or modify it under
      * the terms of the GNU General Public License as published by the Free Software
    @@ -17,7 +17,8 @@
     
     package org.openprivacy.sierra.nym.talon.interfaces;
     
    -
    +import java.io.*;
    +import java.net.*;
     import java.security.*;
     import java.util.*;
     import talon.*;
    @@ -28,21 +29,16 @@
      * A nym implements the basic security system within Talon.
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Nym.java,v 1.1 2001/02/09 22:39:11 burton Exp $
    + * @version $Id: Nym.java,v 1.2 2001/02/19 06:50:29 burton Exp $
      */
     public interface Nym extends Component, Principal {
     
    -
    - //FIXME: I am not sure this should be public... Maybe we should just have a
    - //mechanism to sign documents.
    - //PrivateKey getPrivateKey
    -
         /**
          * Get the public key for this num. Other components within the system can
          * use this as a handle for further operations.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Nym.java,v 1.1 2001/02/09 22:39:11 burton Exp $
    + * @version $Id: Nym.java,v 1.2 2001/02/19 06:50:29 burton Exp $
          */
         public PublicKey getPublicKey();
     
    @@ -55,7 +51,8 @@
          * owner of this child.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: Nym.java,v 1.1 2001/02/09 22:39:11 burton Exp $
    + * @version $Id: Nym.java,v 1.2 2001/02/19 06:50:29 burton Exp $
          */
         public Nym getNym();
    +
     }

    *****************************************************************
    File: sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/NymBuilder.java

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

    CVSWeb: Annotate this file: http://openprivacy.org/cgi-bin/cvsweb/cvsweb.cgi/sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/NymBuilder.java?annotate=1.2

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

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

    Index: sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/NymBuilder.java
    diff -u sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/NymBuilder.java:1.1 sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/NymBuilder.java:1.2
    --- sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/NymBuilder.java:1.1 Fri Feb 9 14:39:11 2001
    +++ sierra/src/java/org/openprivacy/sierra/nym/talon/interfaces/NymBuilder.java Sun Feb 18 22:50:29 2001
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2000 OpenPrivacy.org. All rights reserved.
    + * Copyright 2001 OpenPrivacy.org. All rights reserved.
      *
      * This program is free software; you can redistribute it and/or modify it under
      * the terms of the GNU General Public License as published by the Free Software
    @@ -17,6 +17,8 @@
     
     package org.openprivacy.sierra.nym.talon.interfaces;
     
    +import java.io.*;
    +import java.net.*;
     import java.util.*;
     import talon.*;
     import talon.interfaces.*;
    @@ -27,7 +29,7 @@
      * and internal Nym which you can obtain via getNym.
      *
      * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: NymBuilder.java,v 1.1 2001/02/09 22:39:11 burton Exp $
    + * @version $Id: NymBuilder.java,v 1.2 2001/02/19 06:50:29 burton Exp $
      */
     public interface NymBuilder extends Component {
     
    @@ -35,7 +37,7 @@
          * Get the Nym created by this Nym builder.
          *
          * @author <a href="mailto:burton@relativity.yi.org">Kevin A. Burton</a>
    - * @version $Id: NymBuilder.java,v 1.1 2001/02/09 22:39:11 burton Exp $
    + * @version $Id: NymBuilder.java,v 1.2 2001/02/19 06:50:29 burton Exp $
          */
         public Nym getNym();
         



    This archive was generated by hypermail 2b30 : Sun Feb 18 2001 - 22:51:31 PST