[utilities COMMIT] in /tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6: DelegateToAppli...
noreply at shibboleth.net
noreply at shibboleth.net
Tue Sep 8 12:05:41 EDT 2015
Author: tzeller
Date: Tue Sep 8 12:05:41 2015
New Revision: 819
URL: http://svn.shibboleth.net/view/utilities?rev=819&view=rev
Log:
Checkstyle.
Added:
tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/package-info.java (with props)
Modified:
tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationHttp11Protocol.java
tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationJSSEImplementation.java
Modified: tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationHttp11Protocol.java
URL: http://svn.shibboleth.net/view/utilities/tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationHttp11Protocol.java?rev=819&r1=818&r2=819&view=diff
==============================================================================
--- tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationHttp11Protocol.java (original)
+++ tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationHttp11Protocol.java Tue Sep 8 12:05:41 2015
@@ -27,7 +27,8 @@
* <li>forces the SSLEnabled property to 'true'</li>
* <li>forces clientAuth property to 'true'</li>
* <li>forces socketFactory property to null</li>
- * <li>forces SSLImplementation property to 'edu.internet2.middleware.security.tomcat6.DelegateToApplicationJSSEImplementation</li>
+ * <li>forces SSLImplementation property to
+ * 'edu.internet2.middleware.security.tomcat6.DelegateToApplicationJSSEImplementation'</li>
* <li>disables the ability to override any of these settings</li>
* </ul>
*
@@ -57,8 +58,9 @@
log.error(sm.getString("http11protocol.endpoint.initerror"), ex);
throw ex;
}
- if (log.isInfoEnabled())
+ if (log.isInfoEnabled()) {
log.info(sm.getString("http11protocol.init", getName()));
+ }
}
/** {@inheritDoc} */
@@ -69,7 +71,7 @@
/**
* {@inheritDoc}
*
- * This method is not supported by this protocol
+ * This method is not supported by this protocol.
*/
public void setSecure(boolean b) {
throw new UnsupportedOperationException("Setting of 'secure' property is not supportted by this protocol");
@@ -83,7 +85,7 @@
/**
* {@inheritDoc}
*
- * This method is not supported by this protocol
+ * This method is not supported by this protocol.
*/
public void setClientauth(String k) {
throw new UnsupportedOperationException("Setting of 'clientAuth' property is not supportted by this protocol");
@@ -97,9 +99,9 @@
/**
* {@inheritDoc}
*
- * This method is not supported by this protocol
+ * This method is not supported by this protocol.
*/
- public void setSSLEnabled(boolean SSLEnabled) {
+ public void setSSLEnabled(boolean sslEnabled) {
throw new UnsupportedOperationException("Setting of 'SSLEnabled' property is not supportted by this protocol");
}
@@ -111,10 +113,11 @@
/**
* {@inheritDoc}
*
- * This method is not supported by this protocol
+ * This method is not supported by this protocol.
*/
public void setSSLImplementation(String valueS) {
- throw new UnsupportedOperationException("Setting of 'SSLImplementation' property is not supportted by this protocol");
+ throw new UnsupportedOperationException(
+ "Setting of 'SSLImplementation' property is not supportted by this protocol");
}
/** {@inheritDoc} */
@@ -125,9 +128,10 @@
/**
* {@inheritDoc}
*
- * This method is not supported by this protocol
+ * This method is not supported by this protocol.
*/
public void setSocketFactory(String valueS) {
- throw new UnsupportedOperationException("Setting of 'socketFactory' property is not supportted by this protocol");
+ throw new UnsupportedOperationException(
+ "Setting of 'socketFactory' property is not supportted by this protocol");
}
}
Modified: tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationJSSEImplementation.java
URL: http://svn.shibboleth.net/view/utilities/tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationJSSEImplementation.java?rev=819&r1=818&r2=819&view=diff
==============================================================================
--- tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationJSSEImplementation.java (original)
+++ tomcat6-dta-ssl/trunk/src/main/java/edu/internet2/middleware/security/tomcat6/DelegateToApplicationJSSEImplementation.java Tue Sep 8 12:05:41 2015
@@ -41,7 +41,7 @@
/** Class logger. */
private static Log log = LogFactory.getLog(DelegateToApplicationJSSEImplementation.class);
[... 49 lines stripped ...]
More information about the commits
mailing list