All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.errai.cdi.client.rpc.AccountManager Maven / Gradle / Ivy

/* jboss.org */
package org.jboss.errai.cdi.client.rpc;

import org.jboss.errai.bus.server.annotations.Remote;
import org.jboss.errai.cdi.client.rpc.Account;

import java.util.List;

/**
 * @author: Heiko Braun 
 * @date: Apr 6, 2010
 */
@Remote
public interface AccountManager
{
  void createAccount(Account account);
  Account getAccount(String id);
  List getAllAccounts();
  void deleteAccount(String id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy