Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/flexstor/common/services/RMIServiceI.java


1   /*
2    * RMIServiceI.java
3    *
4    * Copyright $Date: 2003/08/11 02:22:34 $ FLEXSTOR.net Inc.
5    *
6    * This work is licensed for use and distribution under license terms found at
7    * http://www.flexstor.org/license.html
8    *
9    */
10  
11  package com.flexstor.common.services;
12  
13  import java.rmi.Remote;
14  import java.rmi.RemoteException;
15  import java.util.Hashtable;
16  
17  import com.flexstor.common.data.ActionData;
18  import com.flexstor.common.data.ActionResult;
19  
20  public interface RMIServiceI
21  extends Remote
22  {
23    public abstract ActionResult run(ActionData theData, Hashtable properties) throws RemoteException;
24  }