I have been trying to use Square's Redacted annotation to redact a pin from a toString() method in my auto generated class but the extension is not being applied. It seems like the extension is not read by the class loader.
The @AutoValue annotation works fine but the @Redacted annotation is not applied.
package io.*******.********.order.pin.hsm;
import com.google.auto.value.AutoValue;
import io.*****.crypto.model.PinBlockFormat;
@AutoValue
public abstract class GeneratePvvRequest {
/** @return Hexadecimal string representing the encrypted PIN */
@Redacted
public abstract String pinBlock();
/** @return Account number under which the PIN block is currently encrypted */
public abstract String pinBlockAccountNumber();
/** @return Name of the ZPK under which the PIN block is currently encrypted */
public abstract String zpkName();
/** @return Index of the ZPK under which the PIN block is currently encrypted */
public abstract Integer zpkIndex();
/** @return ISO format under which the PIN block is currently encrypted */
public abstract PinBlockFormat pinBlockFormat();
/** @return Account number used to generate the pin's PVV */
public abstract String pvvAccountNumber();
public static GeneratePvvRequest create(
String pinBlock,
String pinBlockAccountNumber,
String zpkName,
Integer zpkIndex,
PinBlockFormat pinBlockFormat,
String pvvAccountNumber) {
return new AutoValue_GeneratePvvRequest(
pinBlock,
pinBlockAccountNumber,
zpkName,
zpkIndex,
pinBlockFormat,
pvvAccountNumber);
}
}
I discovered my problem. I needed to add an annotationProcessorPath to the maven-compiler-plugin.
Everything works hunky-dory now.