use of com.adaptris.util.KeyValuePair in project interlok by adaptris.
the class JndiImplementationCase method testInitialiseWithCredentials.
@Test
public void testInitialiseWithCredentials() throws Exception {
String queueName = testName.getMethodName() + "_queue";
String topicName = testName.getMethodName() + "_topic";
PasProducer producer = new PasProducer().withTopic(topicName);
;
StandardJndiImplementation jv = createVendorImplementation();
JmsConnection c = activeMqBroker.getJndiPasConnection(jv, false, queueName, topicName);
jv.getJndiParams().addKeyValuePair(new KeyValuePair("UserName", RequiresCredentialsBroker.DEFAULT_USERNAME));
jv.getJndiParams().addKeyValuePair(new KeyValuePair("Password", RequiresCredentialsBroker.DEFAULT_PASSWORD));
StandaloneProducer standaloneProducer = new StandaloneProducer(c, producer);
try {
LifecycleHelper.init(standaloneProducer);
} finally {
LifecycleHelper.close(standaloneProducer);
}
}
use of com.adaptris.util.KeyValuePair in project interlok by adaptris.
the class JndiImplementationCase method testInitialiseWithEncryptedPasswordNotSupported.
@Test
public void testInitialiseWithEncryptedPasswordNotSupported() throws Exception {
RequiresCredentialsBroker broker = new RequiresCredentialsBroker();
String queueName = testName.getMethodName() + "_queue";
String topicName = testName.getMethodName() + "_topic";
PasProducer producer = new PasProducer().withTopic(queueName);
StandardJndiImplementation jv = createVendorImplementation();
JmsConnection c = broker.getJndiPasConnection(jv, false, queueName, topicName);
jv.getJndiParams().addKeyValuePair(new KeyValuePair("UserName", RequiresCredentialsBroker.DEFAULT_USERNAME));
jv.getJndiParams().addKeyValuePair(new KeyValuePair("Password", Password.encode(RequiresCredentialsBroker.DEFAULT_PASSWORD, Password.PORTABLE_PASSWORD)));
StandaloneProducer standaloneProducer = new StandaloneProducer(c, producer);
try {
broker.start();
LifecycleHelper.init(standaloneProducer);
fail("Encrypted password should not be supported, as not explicitly configured");
} catch (Exception e) {
// expected
} finally {
broker.destroy();
}
}
use of com.adaptris.util.KeyValuePair in project interlok by adaptris.
the class JndiImplementationCase method testInitialiseWithEncryptedPassword_viaEncodedPasswordKeys.
@Test
public void testInitialiseWithEncryptedPassword_viaEncodedPasswordKeys() throws Exception {
RequiresCredentialsBroker broker = new RequiresCredentialsBroker();
String queueName = testName.getMethodName() + "_queue";
String topicName = testName.getMethodName() + "_topic";
PasProducer producer = new PasProducer().withTopic(queueName);
StandardJndiImplementation jv = createVendorImplementation();
JmsConnection c = broker.getJndiPasConnection(jv, false, queueName, topicName);
jv.getJndiParams().addKeyValuePair(new KeyValuePair("UserName", RequiresCredentialsBroker.DEFAULT_USERNAME));
jv.getJndiParams().addKeyValuePair(new KeyValuePair("Password", Password.encode(RequiresCredentialsBroker.DEFAULT_PASSWORD, Password.PORTABLE_PASSWORD)));
jv.setEncodedPasswordKeys("Password");
StandaloneProducer standaloneProducer = new StandaloneProducer(c, producer);
try {
broker.start();
LifecycleHelper.init(standaloneProducer);
} finally {
LifecycleHelper.close(standaloneProducer);
broker.destroy();
}
}
use of com.adaptris.util.KeyValuePair in project interlok by adaptris.
the class ConfiguredResponseHeaderProvider method addHeaders.
@Override
public HttpServletResponse addHeaders(AdaptrisMessage msg, HttpServletResponse target) {
for (KeyValuePair k : getHeaders()) {
log.trace("Adding Response Header [{}: {}]", k.getKey(), k.getValue());
target.addHeader(k.getKey(), k.getValue());
}
return target;
}
use of com.adaptris.util.KeyValuePair in project interlok by adaptris.
the class HttpConnection method configure.
protected ServerConnector configure(ServerConnector connector) throws Exception {
connector.setPort(getPort());
for (KeyValuePair kvp : getServerConnectorProperties().getKeyValuePairs()) {
boolean matched = false;
for (ServerConnectorProperty sp : ServerConnectorProperty.values()) {
if (kvp.getKey().equalsIgnoreCase(sp.toString())) {
sp.applyProperty(connector, kvp.getValue());
matched = true;
break;
}
}
if (!matched) {
if (!SimpleBeanUtil.callSetter(connector, "set" + kvp.getKey(), kvp.getValue())) {
log.trace("Ignoring unsupported Property {}", kvp.getKey());
}
}
}
return connector;
}
Aggregations