File tree Expand file tree Collapse file tree
TestVectors/runtimes/java/src/main/java/software/amazon/cryptography/dbencryptionsdk/dynamodb/testvectors/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2+ // SPDX-License-Identifier: Apache-2.0
3+
4+ package software .amazon .cryptography .dbencryptionsdk .dynamodb .testvectors .model ;
5+
6+ /**
7+ * A pair of config names (write config, read config) used for IO and modification tests.
8+ */
9+ public class ConfigPair {
10+
11+ private final String writeConfig ;
12+ private final String readConfig ;
13+
14+ public ConfigPair (String writeConfig , String readConfig ) {
15+ this .writeConfig = writeConfig ;
16+ this .readConfig = readConfig ;
17+ }
18+
19+ public String getWriteConfig () {
20+ return writeConfig ;
21+ }
22+
23+ public String getReadConfig () {
24+ return readConfig ;
25+ }
26+
27+ @ Override
28+ public String toString () {
29+ return "ConfigPair{write='" + writeConfig + "', read='" + readConfig + "'}" ;
30+ }
31+ }
You can’t perform that action at this time.
0 commit comments