Advertisement
techno-

Payment.java

Nov 23rd, 2022
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.26 KB | None | 0 0
  1. package e1;
  2.  
  3. import java.util.Date;
  4.  
  5. public class Payment implements EstadoOrder{
  6.     private static final Payment instancia = new Payment();
  7.     private Payment(){}
  8.     public static Payment getInstancia(){ return instancia; }
  9.  
  10.  
  11.     @Override
  12.     public void anadirProducto(Order order, ProductoCantidad productoCantidad) {
  13.         //Ya no podemos eliminar productos
  14.     }
  15.  
  16.     @Override
  17.     public void eliminarProducto(Order order, ProductoCantidad productoCantidad) {
  18.         //Ya no podemos eliminar productos
  19.     }
  20.  
  21.     @Override
  22.     public void siguienteEstado(Order order) {
  23.         order.setEstado(Cancelled.getInstancia());
  24.     }
  25.  
  26.     @Override
  27.     public void anteriorEstado(Order order) {
  28.         //No es posible volver al checkout
  29.     }
  30.  
  31.     @Override
  32.     public void modificarCantidadProducto(Order order, ProductoCantidad productoCantidad, int nuevaCantidad) {
  33.         //Ya no podemos modificar la cantidad de productos
  34.     }
  35.  
  36.  
  37.     @Override
  38.     public void pagar(Order order) {
  39.         order.setConfirmado(true);
  40.         order.setFecha(new Date());
  41.     }
  42.  
  43.     @Override
  44.     public void cancelar(Order order) {
  45.         //Aún no se puede cancelar
  46.     }
  47.  
  48.     @Override
  49.     public void screenInfo(Order order) {
  50.  
  51.     }
  52. }
  53.  
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement