//This file generated automatically from the MARIUS LP system, please do not edit.

public abstract class ControladorWrapper implements ControladorIF {

  private ControladorIF wrappee;
  public ControladorWrapper(ControladorIF wrappee) {
    this.wrappee = wrappee;
  }
  public String servicio(String datos){
     return this.wrappee.servicio(datos);
  }

} //End of class ControladorWrapper
