Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 64800 invoked from network); 14 Jun 2004 12:45:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 14 Jun 2004 12:45:51 -0000 Received: (qmail 37078 invoked by uid 500); 14 Jun 2004 12:45:47 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 37005 invoked by uid 500); 14 Jun 2004 12:45:45 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 36964 invoked by uid 500); 14 Jun 2004 12:45:44 -0000 Received: (qmail 36919 invoked by uid 99); 14 Jun 2004 12:45:43 -0000 Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 14 Jun 2004 05:45:43 -0700 Received: (qmail 64612 invoked by uid 1842); 14 Jun 2004 12:45:30 -0000 Date: 14 Jun 2004 12:45:30 -0000 Message-ID: <20040614124530.64611.qmail@minotaur.apache.org> From: treilly@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid Constants.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N treilly 2004/06/14 05:45:30 Modified: id/src/java/org/apache/commons/id/uuid Constants.java Log: 2 New constants Revision Changes Path 1.2 +6 -3 jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/Constants.java Index: Constants.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/id/src/java/org/apache/commons/id/uuid/Constants.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Constants.java 31 May 2004 06:55:15 -0000 1.1 +++ Constants.java 14 Jun 2004 12:45:30 -0000 1.2 @@ -95,7 +95,7 @@ //** Exception message constants /** Message indicating this is not a version one UUID */ String WRONG_VAR_VER_MSG = "Not a ietf variant 2 or version 1 (time-based UUID)"; - + // ** Array positions and lengths of UUID fields ** // /** Byte length of time low field */ int TIME_LOW_BYTE_LEN = 4; @@ -115,5 +115,8 @@ int TIME_MID_START_POS = 4; /** uuid array position start of hi field */ int TIME_HI_START_POS = 6; - + /** Byte position of the clock sequence and reserved field */ + short TIME_HI_AND_VERSION_BYTE_6 = 6; + /** Byte position of the clock sequence and reserved field */ + short CLOCK_SEQ_HI_AND_RESERVED_BYTE_8 = 8; } --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org