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

Quick Search    Search Deep

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


1   /*
2    * ServiceBrokerI.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.util.Hashtable;
14  
15  public interface ServiceBrokerI
16  {
17     public String ping();
18  
19     public Object addQItem(Object item);
20  
21     public Object addQItem(Object item, int id);
22  
23     public int getUniqueNo();
24  
25     public String getInstallPath();
26  
27     public Object invokeImmediately(Object obj) throws SrvcNotAvailException;
28  
29     public Object invokeImmediately(Object item, Hashtable htExternalProps) throws SrvcNotAvailException;
30  
31     public void invokeImmediateAsynchronously(Object item) throws SrvcNotAvailException;
32  
33     public void invokeImmediateAsynchronously(Object item, Hashtable htExternalProps) throws SrvcNotAvailException;
34  }