All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jpaoletti.jpm.converter.ShowPasswordConverter Maven / Gradle / Ivy

The newest version!
package jpaoletti.jpm.converter;

import jpaoletti.jpm.core.PMContext;

/**
 * Conveter for showing passwords
 * 
 * @author jpaoletti
 */
public class ShowPasswordConverter extends Converter {

    @Override
    public Object build(PMContext ctx) throws ConverterException {
        throw new IgnoreConvertionException("");
    }

    @Override
    public String visualize(PMContext ctx) throws ConverterException {
        return "**********************";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy