/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ec.gob.mcds.seguridades.enums;
/**
*
* @author christian
*/
public enum SistemasEnum {
SEGURIDADES_RIPS("SEGU");
private SistemasEnum(String nemonico) {
this.nemonico = nemonico;
}
private String nemonico;
/**
* @return the nemonico
*/
public String getNemonico() {
return nemonico;
}
/**
* @param nemonico the nemonico to set
*/
public void setNemonico(String nemonico) {
this.nemonico = nemonico;
}
}