mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2024-11-22 08:13:20 +00:00
Module Core, packg "entities.query" : suppression de ce package (inutilisé)
This commit is contained in:
parent
57b950e465
commit
2161dc2b72
@ -1,5 +0,0 @@
|
|||||||
package com.pqt.core.entities.query;
|
|
||||||
|
|
||||||
public interface IQuery {
|
|
||||||
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
package com.pqt.core.entities.query;
|
|
||||||
|
|
||||||
public enum QueryType {
|
|
||||||
|
|
||||||
CONNECT, SALE, STOCK, STAT, LOG, UPDATE
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
package com.pqt.core.entities.query;
|
|
||||||
|
|
||||||
import com.pqt.core.entities.sale.Sale;
|
|
||||||
|
|
||||||
public class SaleQuery extends SimpleQuery {
|
|
||||||
|
|
||||||
private Sale sale;
|
|
||||||
|
|
||||||
public SaleQuery(Sale sale) {
|
|
||||||
super(QueryType.SALE);
|
|
||||||
this.sale = sale;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Sale getSale() {
|
|
||||||
return sale;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSale(Sale sale) {
|
|
||||||
this.sale = sale;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
package com.pqt.core.entities.query;
|
|
||||||
|
|
||||||
public class SimpleQuery implements IQuery {
|
|
||||||
|
|
||||||
private QueryType type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param type
|
|
||||||
* @throws NullPointerException if type is null
|
|
||||||
*/
|
|
||||||
public SimpleQuery(QueryType type) {
|
|
||||||
if(type==null) throw new NullPointerException("null value not allowed as query type");
|
|
||||||
|
|
||||||
this.type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public QueryType getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
package com.pqt.core.entities.query;
|
|
||||||
|
|
||||||
import com.pqt.core.entities.product.ProductUpdate;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class UpdateQuery extends SimpleQuery {
|
|
||||||
|
|
||||||
private List<ProductUpdate> updates;
|
|
||||||
|
|
||||||
public UpdateQuery(List<ProductUpdate> updates) {
|
|
||||||
super(QueryType.UPDATE);
|
|
||||||
this.updates = updates;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ProductUpdate> getUpdates() {
|
|
||||||
return updates;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setUpdates(List<ProductUpdate> updates) {
|
|
||||||
this.updates = updates;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user