package omq.client.proxy; /** * CallType is an enumeration with the call types you can do: synchronous calls * and asynchronous calls * * @author Sergi Toda * */ public enum CallType { SYNC, ASYNC; }