diff options
| author | Andrew MacBean <macbean@apache.org> | 2015-01-14 10:38:04 +0000 |
|---|---|---|
| committer | Andrew MacBean <macbean@apache.org> | 2015-01-14 10:38:04 +0000 |
| commit | 9b1d37a0cbef71478b58c6acee4f72a2474a9f7d (patch) | |
| tree | 3ee1529447ca2606eed37d1d6d0293b86f3c2e58 /qpid/java/qpid-test-utils/src | |
| parent | f457cc314c6bc692731a87e8fed86d049e7c66c6 (diff) | |
| download | qpid-python-9b1d37a0cbef71478b58c6acee4f72a2474a9f7d.tar.gz | |
QPID-6304: [Java Broker] Allow truststore and keystore (JKS) files to be stored as a data:// URL inside the config
* Added truststore/keystore unit tests too to cover both new and (most of) the existing functionality,
retiring the equivilent slower REST system tests.
* Added single REST test exercising the creation of a keystore/teststore from data:// URL.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1651615 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/qpid-test-utils/src')
| -rw-r--r-- | qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/TestSSLConstants.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/TestSSLConstants.java b/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/TestSSLConstants.java index c48f164d98..96eef79694 100644 --- a/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/TestSSLConstants.java +++ b/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/TestSSLConstants.java @@ -28,6 +28,7 @@ public interface TestSSLConstants String BROKER_KEYSTORE = "test-profiles/test_resources/ssl/java_broker_keystore.jks"; String BROKER_KEYSTORE_PASSWORD = "password"; + Object BROKER_KEYSTORE_ALIAS = "rootca"; String BROKER_PEERSTORE = "test-profiles/test_resources/ssl/java_broker_peerstore.jks"; String BROKER_PEERSTORE_PASSWORD = "password"; |
