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

public class ServicioProxy implements ServicioIF {
private ServicioIF svr = new Servicio();
public void operacion() {
 System.out.println("Servicio Proxy ");
 svr.operacion();
}
} //End of class ServicioProxy
