Package org.cspoker.common.api.account.context

Examples of org.cspoker.common.api.account.context.ForwardingRemoteAccountContext


  }

  @Override
  public RemoteAccountContext getAccountContext() throws RemoteException {
    try {
      ForwardingRemoteAccountContext wrappedContext = new ForwardingRemoteAccountContext(super.getAccountContext());
      return (RemoteAccountContext) UnicastRemoteObject.exportObject(wrappedContext, 0);
    } catch (RemoteException exception) {
      logger.error(exception.getMessage(), exception);
      throw exception;
    }
View Full Code Here

TOP

Related Classes of org.cspoker.common.api.account.context.ForwardingRemoteAccountContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.