|
From: <ha...@us...> - 2008-03-26 14:42:19
|
Revision: 1948
http://cogkit.svn.sourceforge.net/cogkit/?rev=1948&view=rev
Author: hategan
Date: 2008-03-26 07:40:52 -0700 (Wed, 26 Mar 2008)
Log Message:
-----------
changed value to string instead of long
Modified Paths:
--------------
trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Identity.java
Modified: trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Identity.java
===================================================================
--- trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Identity.java 2008-03-26 14:40:11 UTC (rev 1947)
+++ trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Identity.java 2008-03-26 14:40:52 UTC (rev 1948)
@@ -36,20 +36,15 @@
* Sets the value for this <code>Identity</code>.
*
* @param value
- * a numeric value representing the namespace for this
+ * a String value representing the value for this
* <code>Identity</code>.
*/
- public void setValue(long value);
+ public void setValue(String value);
/**
* Returns the value for this <code>Identity</code>.
*
* @return the value for this <code>Identity</code>
*/
- public long getValue();
-
- /**
- * Compares this <Identity></code> with any other <code>Identity</code>.
- */
- public boolean equals(Identity id);
+ public String getValue();
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|