|
From: <ha...@us...> - 2008-02-12 16:59:44
|
Revision: 1881
http://cogkit.svn.sourceforge.net/cogkit/?rev=1881&view=rev
Author: hategan
Date: 2008-02-12 08:59:41 -0800 (Tue, 12 Feb 2008)
Log Message:
-----------
removed time tracking of events from task; changed attribute name accessor
Modified Paths:
--------------
trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Task.java
Modified: trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Task.java
===================================================================
--- trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Task.java 2008-02-12 16:57:52 UTC (rev 1880)
+++ trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Task.java 2008-02-12 16:59:41 UTC (rev 1881)
@@ -7,9 +7,7 @@
package org.globus.cog.abstraction.interfaces;
import java.io.File;
-import java.util.Calendar;
import java.util.Collection;
-import java.util.Enumeration;
import org.globus.cog.abstraction.xml.MarshalException;
@@ -232,7 +230,7 @@
* @return an enumeration of all the attribute names. null if no attribute
* available
*/
- public Enumeration getAllAttributes();
+ public Collection getAttributeNames();
/**
* Adds a listener to recieve the output events associated with this
@@ -292,23 +290,6 @@
* Returns a boolean indicating if the task is canceled.
*/
public boolean isCanceled();
-
- /**
- * Returns the time when this <code>Task</code> was submitted to the
- * remote service.
- *
- * @return the <code>Task</code> submission time. null, if this
- * <code>Task</code> is not yet submitted
- */
- public Calendar getSubmittedTime();
-
- /**
- * Returns the time when this <code>Task</code> was completed.
- *
- * @return the <code>Task</code> completion time. null, if this
- * <code>Task</code> is not yet complete.
- */
- public Calendar getCompletedTime();
/**
* Blocks until the task reaches one of the terminal states (completed, failed or canceled)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|