com.credibledoc.iso8583packer.pan.PanMasker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iso-8583-packer Show documentation
Show all versions of iso-8583-packer Show documentation
Helps to define message structure in ISO 8583 and other formats.
package com.credibledoc.iso8583packer.pan;
import com.credibledoc.iso8583packer.exception.PackerRuntimeException;
import com.credibledoc.iso8583packer.masking.Masker;
/**
* See {@link #maskHex(String)} and {@link #maskValue(Object)} methods.
*
* See the
* masker.md
* documentation.
*
* @author Kyrylo Semenko
*/
public class PanMasker implements Masker {
/**
* Single instance.
*/
private static PanMasker instance;
/**
* Only one instance is allowed, see the {@link #getInstance()} method.
*/
private PanMasker() {
// empty
}
/**
* @return The {@link #instance} singleton.
*/
public static PanMasker getInstance() {
if (instance == null) {
instance = new PanMasker();
}
return instance;
}
private static final String FILLER = "*";
/**
* @return For example 1234***************
*/
@Override
public String maskHex(String hex) {
if (hex == null) {
return null;
}
return mask(hex);
}
/**
* @return For example 1234***************
*/
@Override
public String maskValue(Object value) {
if (value == null) {
return null;
}
if (!(value instanceof String)) {
throw new PackerRuntimeException("Expected String but found " + value.getClass().getSimpleName());
}
return mask((String) value);
}
private String mask(String hex) {
StringBuilder stringBuilder = new StringBuilder(hex.length());
for (int i = 0; i < hex.length(); i++) {
if (i < 4) {
stringBuilder.append(hex.charAt(i));
} else {
stringBuilder.append(FILLER);
}
}
return stringBuilder.toString();
}
}