~kirkland/eucalyptus/label-metadata

« back to all changes in this revision

Viewing changes to clc/modules/axis2-transport/src/edu/ucsb/eucalyptus/transport/client/Client.java

  • Committer: graziano obertelli
  • Date: 2009-01-07 03:32:35 UTC
  • Revision ID: graziano@cs.ucsb.edu-20090107033235-oxhuexp18v8hg0pw
Tags: 1.4
from CVS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package edu.ucsb.eucalyptus.transport.client;
 
2
 
 
3
import edu.ucsb.eucalyptus.msgs.EucalyptusMessage;
 
4
import org.apache.axis2.AxisFault;
 
5
import org.apache.axiom.om.OMElement;
 
6
 
 
7
public interface Client {
 
8
 
 
9
  public EucalyptusMessage send( EucalyptusMessage msg ) throws AxisFault;
 
10
 
 
11
  public OMElement sync( OMElement omMsg ) throws AxisFault;
 
12
 
 
13
  public void dispatch( EucalyptusMessage msg ) throws AxisFault;
 
14
 
 
15
  public void async( OMElement omMsg ) throws AxisFault;
 
16
 
 
17
  public String getUri();
 
18
}