This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git
The following commit(s) were added to refs/heads/master by this push:
new 7b99261 Javadoc.
7b99261 is described below
commit 7b99261d36666dcd1ef39fe3f1c809cdd79b52eb
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Oct 23 09:48:00 2019 -0400
Javadoc.
---
.../provider/ftps/FtpsDataChannelProtectionLevel.java | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsDataChannelProtectionLevel.java
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsDataChannelProtectionLevel.java
index a61d1a0..f1c6518 100644
---
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsDataChannelProtectionLevel.java
+++
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsDataChannelProtectionLevel.java
@@ -18,10 +18,27 @@ package org.apache.commons.vfs2.provider.ftps;
/**
* Protection level of the data channel in a FTPS communication.
+ * <ul>
+ * <li>C - Clear</li>
+ * <li>S - Safe</li>
+ * <li>E - Confidential</li>
+ * <li>P - Private</li>
+ * </ul>
*
* @see <a href="http://tools.ietf.org/html/rfc2228#section-3">RFC 2228,
section 3</a>
* @since 2.1
*/
public enum FtpsDataChannelProtectionLevel {
- C, S, E, P
+
+ /** Clear. */
+ C,
+
+ /** Safe. */
+ S,
+
+ /** Confidential. */
+ E,
+
+ /** Private. */
+ P
}