mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-07-05 17:45:18 +00:00
11 lines
285 B
Java
11 lines
285 B
Java
package com.pqt.client.module.account.listeners;
|
|
|
|
import java.util.EventListener;
|
|
|
|
public interface IAccountListener extends EventListener {
|
|
|
|
void onAccountStatusChangedEvent(boolean status);
|
|
void onAccountStatusNotChangedEvent(Throwable cause);
|
|
void onAccountListChangedEvent();
|
|
}
|