mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Add javadoc to SASLError
This commit is contained in:
parent
90f52fcc3b
commit
03031dfb5d
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Copyright 2014 Florian Schmaus
|
* Copyright 2014-2016 Florian Schmaus
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -19,6 +19,11 @@ package org.jivesoftware.smack.sasl;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The SASL error condition.
|
||||||
|
*
|
||||||
|
* @see <a href="https://tools.ietf.org/html/rfc6120#section-6.5">RFC 6120 § 6.5, SASL Errors</a>
|
||||||
|
*/
|
||||||
public enum SASLError {
|
public enum SASLError {
|
||||||
|
|
||||||
aborted,
|
aborted,
|
||||||
|
|
Loading…
Reference in a new issue