[
https://issues.jboss.org/browse/AS7-2325?page=com.atlassian.jira.plugin.s...
]
Jason Greene updated AS7-2325:
------------------------------
Fix Version/s: 7.1.2.Final
(was: 7.1.1.Final)
This issue is being relocated to 7.1.2 so that 7.1.1 only contains criticals, blockers,
and EAP LA issues (which are probably not yet at the right status, or need an extra triage
pass).
If these issues are completed in a 7.1.1 timeframe please change the fix version. Although
if you forget I will bulk correct.
Get rid of reflection configuring the ProtocolHandler in
WebConnectorService
----------------------------------------------------------------------------
Key: AS7-2325
URL:
https://issues.jboss.org/browse/AS7-2325
Project: Application Server 7
Issue Type: Feature Request
Components: Web
Reporter: Kabir Khan
Assignee: Remy Maucherat
Fix For: 7.1.2.Final
A lot of the set methods do
{code}
if (ssl.hasDefined(Constants.PASSWORD)) {
Method m =
connector.getProtocolHandler().getClass().getMethod("setSSLPassword",
String.class);
m.invoke(connector.getProtocolHandler(),
ssl.get(Constants.PASSWORD).asString());
}
if (ssl.hasDefined(Constants.CERTIFICATE_KEY_FILE)) {
Method m =
connector.getProtocolHandler().getClass().getMethod("setSSLCertificateKeyFile",
String.class);
m.invoke(connector.getProtocolHandler(),
ssl.get(Constants.CERTIFICATE_KEY_FILE).asString());
}
//etc.
{code}
The ProtocolHandler inteface does not expose them, so maybe they should go there or
another common interface for configuring PH's
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira