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

com.evasion.ejb.local.AccountManagerLocal Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.evasion.ejb.local;

import com.evasion.entity.Account;
import com.evasion.exception.PersistenceViolationException;
import java.util.List;

/**
 *
 * @author sebastien.glon
 */
public interface AccountManagerLocal {

    Account createAccount(Account account) throws PersistenceViolationException;

    void deleteAccount(Account u);

    Account updateAccount(Account u);

    /**
     * Renvoi la liste des tous les comptes utilisateurs.
     * @return liste des comptes utilisateurs.
     */
    List listAllAccount();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy