AutoValue: Redacted Extension

AutoValue extension for redacting sensitive fields

License

License

Categories

Categories

Auto Application Layer Libs Code Generators Square Business Logic Libraries Financial
GroupId

GroupId

com.squareup.auto.value
ArtifactId

ArtifactId

auto-value-redacted
Last Version

Last Version

1.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

AutoValue: Redacted Extension
AutoValue extension for redacting sensitive fields
Project URL

Project URL

https://github.com/square/auto-value-redacted/
Source Code Management

Source Code Management

https://github.com/square/auto-value-redacted/

Download auto-value-redacted

How to add to project

<!-- https://jarcasting.com/artifacts/com.squareup.auto.value/auto-value-redacted/ -->
<dependency>
    <groupId>com.squareup.auto.value</groupId>
    <artifactId>auto-value-redacted</artifactId>
    <version>1.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.squareup.auto.value/auto-value-redacted/
implementation 'com.squareup.auto.value:auto-value-redacted:1.1.1'
// https://jarcasting.com/artifacts/com.squareup.auto.value/auto-value-redacted/
implementation ("com.squareup.auto.value:auto-value-redacted:1.1.1")
'com.squareup.auto.value:auto-value-redacted:jar:1.1.1'
<dependency org="com.squareup.auto.value" name="auto-value-redacted" rev="1.1.1">
  <artifact name="auto-value-redacted" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.squareup.auto.value', module='auto-value-redacted', version='1.1.1')
)
libraryDependencies += "com.squareup.auto.value" % "auto-value-redacted" % "1.1.1"
[com.squareup.auto.value/auto-value-redacted "1.1.1"]

Dependencies

compile (1)

Group / Artifact Type Version
com.google.auto.value : auto-value jar 1.6.5

runtime (1)

Group / Artifact Type Version
com.squareup : javapoet jar 1.11.1

test (4)

Group / Artifact Type Version
com.google.auto.value : auto-value-annotations jar 1.6.5
junit : junit jar 4.12
com.google.truth : truth jar 0.45
com.google.testing.compile : compile-testing jar 0.18

Project Modules

There are no modules declared in this project.

AutoValue: Redacted Extension

An extension for Google's AutoValue that omits @Redacted field values from toString().

Usage

Include the extension in your project, define a @Redacted annotation, and apply it to any fields that you wish to redact.

@Retention(SOURCE)
@Target({METHOD, PARAMETER, FIELD})
public @interface Redacted {
}
@AutoValue
public abstract class User {
  public abstract String name();
  @Redacted public abstract String phoneNumber();
}

When you call toString() any @Redacted properties are hidden:

User{name=Bob, phoneNumber=██}

Download

Add a Gradle dependency:

annotationProcessor 'com.squareup.auto.value:auto-value-redacted:1.1.1'

or Maven:

<dependency>
  <groupId>com.squareup.auto.value</groupId>
  <artifactId>auto-value-redacted</artifactId>
  <version>1.1.1</version>
  <scope>provided</scope>
</dependency>

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2015 Square, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
com.squareup.auto.value

Square

Versions

Version
1.1.1
1.1.0
1.0.1
1.0.0
0.1.0