commit | 977d93d8b479ce522a65913c36d7afe282966d8b | [log] [tgz] |
---|---|---|
author | Michael Blow <mblow@apache.org> | Thu Mar 05 09:01:54 2020 -0500 |
committer | Michael Blow <mblow@apache.org> | Thu Mar 05 09:01:54 2020 -0500 |
tree | b74741896ccd69ef530b94d46b3720cf0644a729 | |
parent | 3daffa48f34af4e6fe94f44764bc1d5666d690b5 [diff] | |
parent | d17798fadeb990acc4faac82dbae288f9d410ed1 [diff] |
Merge branch 'gerrit/mad-hatter' Change-Id: I2ffc3c6f24580304613bb38953fea86d73b5a533
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/api/ICoordinationService.java b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/api/ICoordinationService.java index 2019da9..5d2ef07 100644 --- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/api/ICoordinationService.java +++ b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/api/ICoordinationService.java
@@ -35,6 +35,18 @@ void put(String key, byte[] value) throws HyracksDataException; /** + * Adds or updates the property with the name {@code key} + * with {@code value}, and indicates that values associated with + * this key should be treated as sensitive (e.g. not logged). Once a + * key is considered sensitive, it remains sensitive until deleted. + * + * @param key + * @param value + * @throws HyracksDataException + */ + void putSensitive(String key, byte[] value) throws HyracksDataException; + + /** * Gets the value of the property with name {@code key} if exists. * * @param key
diff --git a/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/utils/NoOpCoordinationService.java b/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/utils/NoOpCoordinationService.java index 6f9a8d2..3cbaed4 100644 --- a/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/utils/NoOpCoordinationService.java +++ b/asterixdb/asterix-runtime/src/main/java/org/apache/asterix/runtime/utils/NoOpCoordinationService.java
@@ -35,6 +35,11 @@ } @Override + public void putSensitive(String key, byte[] value) { + throw new UnsupportedOperationException(); + } + + @Override public Optional<byte[]> get(String key) { throw new UnsupportedOperationException(); }