mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2024-11-22 08:13:20 +00:00
[CLIENT] #6.A : Supression du module log
This commit is contained in:
parent
387e797d6e
commit
2123843247
@ -1,8 +0,0 @@
|
|||||||
package com.pqt.client.module.log;
|
|
||||||
|
|
||||||
import com.pqt.core.entities.log.LogLine;
|
|
||||||
import com.pqt.core.entities.log.ILoggable;
|
|
||||||
|
|
||||||
public interface ILogLineMaker {
|
|
||||||
LogLine make(ILoggable loggable);
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
package com.pqt.client.module.log;
|
|
||||||
|
|
||||||
//TODO Issue #6 : écrire contenu méthodes
|
|
||||||
//TODO Issue #5 : écrire javadoc
|
|
||||||
public class LogLineMakerManager {
|
|
||||||
|
|
||||||
public ILogLineMaker getMaker(Class clazz) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean setMaker(Class clazz, ILogLineMaker maker) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ILogLineMaker getDefaultMaker() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean setDefaultMaker(ILogLineMaker maker) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
package com.pqt.client.module.log;
|
|
||||||
|
|
||||||
import com.pqt.core.entities.log.ILoggable;
|
|
||||||
import com.pqt.core.entities.log.LogLine;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
//TODO Issue #6 : écrire contenu méthodes
|
|
||||||
//TODO Issue #5 : écrire javadoc
|
|
||||||
public class LogService {
|
|
||||||
|
|
||||||
public void log(ILoggable loggable) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<LogLine> getAllLogs() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<LogLine> getLastLogs(int number) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<LogLine> getLastLogs(int number, int offset) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
package com.pqt.client.module.log.listeners;
|
|
||||||
|
|
||||||
public interface ILogFirerer {
|
|
||||||
|
|
||||||
public abstract void addListener(ILogListener listener);
|
|
||||||
|
|
||||||
public abstract void removeListener(ILogListener listener);
|
|
||||||
|
|
||||||
public abstract void fireLogEvent();
|
|
||||||
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
package com.pqt.client.module.log.listeners;
|
|
||||||
|
|
||||||
import java.util.EventListener;
|
|
||||||
|
|
||||||
public interface ILogListener extends EventListener {
|
|
||||||
|
|
||||||
public abstract void onLogEvent();
|
|
||||||
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
package com.pqt.client.module.log.listeners;
|
|
||||||
|
|
||||||
public class LogListenerAdapter implements ILogListener {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @see com.pqt.client.module.log.listeners.ILogListener#onLogEvent()
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void onLogEvent() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
package com.pqt.client.module.log.listeners;
|
|
||||||
|
|
||||||
//TODO Issue #6 : écrire contenu méthodes
|
|
||||||
public class SimpleLogFirerer implements ILogFirerer {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @see com.pqt.client.module.log.listeners.ILogFirerer#addListener(com.pqt.client.module.log.listeners.ILogListener)
|
|
||||||
*/
|
|
||||||
public void addListener(ILogListener listener) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @see com.pqt.client.module.log.listeners.ILogFirerer#removeListener(com.pqt.client.module.log.listeners.ILogListener)
|
|
||||||
*/
|
|
||||||
public void removeListener(ILogListener listener) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @see com.pqt.client.module.log.listeners.ILogFirerer#fireLogEvent()
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void fireLogEvent() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user