|
From: <ha...@us...> - 2008-03-26 14:42:35
|
Revision: 1950
http://cogkit.svn.sourceforge.net/cogkit/?rev=1950&view=rev
Author: hategan
Date: 2008-03-26 07:42:20 -0700 (Wed, 26 Mar 2008)
Log Message:
-----------
made status and service contact serializable
Modified Paths:
--------------
trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/ServiceContact.java
trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Status.java
Modified: trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/ServiceContact.java
===================================================================
--- trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/ServiceContact.java 2008-03-26 14:41:19 UTC (rev 1949)
+++ trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/ServiceContact.java 2008-03-26 14:42:20 UTC (rev 1950)
@@ -6,11 +6,13 @@
package org.globus.cog.abstraction.interfaces;
+import java.io.Serializable;
+
/**
* This interfaces abstracts the endpoint service handle of remote Grid
* services.
*/
-public interface ServiceContact {
+public interface ServiceContact extends Serializable {
/**
* Sets the host element of this <code>ServiceContact</code>
*/
Modified: trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Status.java
===================================================================
--- trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Status.java 2008-03-26 14:41:19 UTC (rev 1949)
+++ trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/Status.java 2008-03-26 14:42:20 UTC (rev 1950)
@@ -6,12 +6,13 @@
package org.globus.cog.abstraction.interfaces;
+import java.io.Serializable;
import java.util.Date;
/**
* An execution status associated with an <code>ExecutableObject</code>.
*/
-public interface Status {
+public interface Status extends Serializable {
/**
* The <code>ExecutableObject</code> is not submitted to the remote
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|