Why does my AutoValueExtension annotation not work?

94 Views Asked by At

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);
   }
}
1

There are 1 best solutions below

0
On

I discovered my problem. I needed to add an annotationProcessorPath to the maven-compiler-plugin.

      <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.0</version>
    <configuration>
      <annotationProcessorPaths>
        <!-- Allow Dagger to generate its boilerplate -->
        <path>
          <groupId>com.google.dagger</groupId>
          <artifactId>dagger-compiler</artifactId>
          <version>${electrum.dependency.dagger.version}</version>
        </path>
        <!-- The below wasn't strictly required, but adding any entries under annotationProcessorPaths -->
        <!-- overrides the default path which included the necessary annotation processor for auto-value -->
        <path>
          <groupId>com.google.auto.value</groupId>
          <artifactId>auto-value</artifactId>
          <version>${electrum.dependency.auto-value.version}</version>
        </path>
        <path>
          <groupId>com.squareup.auto.value</groupId>
          <artifactId>auto-value-redacted</artifactId>
          <version>1.1.1</version>
        </path>
      </annotationProcessorPaths>
    </configuration>
  </plugin>

Everything works hunky-dory now.