|
From: <ha...@us...> - 2008-03-26 14:42:24
|
Revision: 1949
http://cogkit.svn.sourceforge.net/cogkit/?rev=1949&view=rev
Author: hategan
Date: 2008-03-26 07:41:19 -0700 (Wed, 26 Mar 2008)
Log Message:
-----------
made file location serializable
Modified Paths:
--------------
trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/FileLocation.java
Modified: trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/FileLocation.java
===================================================================
--- trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/FileLocation.java 2008-03-26 14:40:52 UTC (rev 1948)
+++ trunk/current/src/cog/modules/abstraction-common/src/org/globus/cog/abstraction/interfaces/FileLocation.java 2008-03-26 14:41:19 UTC (rev 1949)
@@ -9,8 +9,10 @@
*/
package org.globus.cog.abstraction.interfaces;
-public interface FileLocation {
+import java.io.Serializable;
+public interface FileLocation extends Serializable {
+
/**
* Specifies that nothing should be done with a job output stream or that
* there is nothing provided on the input stream.
@@ -62,7 +64,7 @@
int getCode();
- public static class Impl implements FileLocation {
+ public static class Impl implements FileLocation, Serializable {
private int code;
public Impl(int code) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|