Skip to content

Instantly share code, notes, and snippets.

@emrodriguez
Created July 30, 2022 16:08
Show Gist options
  • Save emrodriguez/c4c498962511f523d25631baace5fd8b to your computer and use it in GitHub Desktop.
Save emrodriguez/c4c498962511f523d25631baace5fd8b to your computer and use it in GitHub Desktop.
public class Conexion {
private static Conexion instancia;
private Conexion() {}
public static Conexion getInstancia() {
if(instancia == null) {
instancia = new Conexcion();
}
return instancia;
}
public void conectar() {
System.out.println("Establece la conexion");
}
public void desconectar() {
System.out.println("Se cierra la conexion");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment