AutoValue: Redacted Extension

AutoValue extension for redacting sensitive fields

Лицензия

Лицензия

Категории

Категории

Auto Библиотеки уровня приложения Code Generators Square Прикладные библиотеки Financial
Группа

Группа

com.squareup.auto.value
Идентификатор

Идентификатор

auto-value-redacted
Последняя версия

Последняя версия

1.1.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

AutoValue: Redacted Extension
AutoValue extension for redacting sensitive fields
Ссылка на сайт

Ссылка на сайт

https://github.com/square/auto-value-redacted/
Система контроля версий

Система контроля версий

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

Скачать auto-value-redacted

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.google.auto.value : auto-value jar 1.6.5

runtime (1)

Идентификатор библиотеки Тип Версия
com.squareup : javapoet jar 1.11.1

test (4)

Идентификатор библиотеки Тип Версия
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

Модули Проекта

Данный проект не имеет модулей.

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

Версии библиотеки

Версия
1.1.1
1.1.0
1.0.1
1.0.0
0.1.0