Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Now the execute method can throw a WorkspaceException
Browse files Browse the repository at this point in the history
  • Loading branch information
carlasouza committed Jul 19, 2011
1 parent 3593605 commit e03b0e5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
@@ -1,5 +1,7 @@
package org.globus.workspace.service.impls.async; package org.globus.workspace.service.impls.async;


import org.globus.workspace.WorkspaceException;

/** /**
* Created by IntelliJ IDEA. * Created by IntelliJ IDEA.
* User: carla * User: carla
Expand All @@ -9,6 +11,6 @@
*/ */
public interface VMMRequest { public interface VMMRequest {


public String execute(); public String execute() throws WorkspaceException;


} }
@@ -0,0 +1,11 @@
package org.globus.workspace.xen;

/**
* Created by IntelliJ IDEA.
* User: carla
* Date: 19/07/11
* Time: 09:49
* To change this template use File | Settings | File Templates.
*/
public class XenRequest {
}

0 comments on commit e03b0e5

Please sign in to comment.