Enable javadoc checkstyle

and fix violations.
filetransferTypos
Florian Schmaus 2015-03-29 12:15:32 +02:00
parent 57260b2a44
commit 64d134052d
198 changed files with 529 additions and 501 deletions

View File

@ -75,5 +75,20 @@
<property name="message" value="Usage of println"/>
<property name="ignoreComments" value="true"/>
</module>
<module name="JavadocMethod">
<!-- TODO stricten those checks -->
<property name="scope" value="public"/>
<property name="allowUndeclaredRTE" value="true"/>
<property name="allowMissingParamTags" value="true"/>
<property name="allowMissingThrowsTags" value="true"/>
<property name="allowMissingReturnTag" value="true"/>
<property name="allowMissingJavadoc" value="true"/>
<property name="suppressLoadErrors" value="true"/>
</module>
<module name="JavadocStyle">
<property name="scope" value="public"/>
<property name="checkEmptyJavadoc" value="true"/>
<property name="checkHtml" value="false"/>
</module>
</module>
</module>

View File

@ -19,7 +19,7 @@ package org.jivesoftware.smack.util.stringencoder.android;
import android.util.Base64;
/**
* A Base 64 encoding implementation based on android.util.Base64
* A Base 64 encoding implementation based on android.util.Base64.
* @author Florian Schmaus
*/
public class AndroidBase64Encoder implements org.jivesoftware.smack.util.stringencoder.Base64.Encoder {

View File

@ -23,10 +23,6 @@ import org.jivesoftware.smack.util.stringencoder.StringEncoder;
import android.util.Base64;
/**
*
*/
public class AndroidBase64UrlSafeEncoder implements StringEncoder {
private static AndroidBase64UrlSafeEncoder instance = new AndroidBase64UrlSafeEncoder();

View File

@ -16,9 +16,6 @@
*/
package org.jivesoftware.smack;
/**
*
*/
public abstract class AbstractConnectionClosedListener extends AbstractConnectionListener {
@Override

View File

@ -47,7 +47,6 @@ import org.jivesoftware.smack.SmackException.AlreadyConnectedException;
import org.jivesoftware.smack.SmackException.AlreadyLoggedInException;
import org.jivesoftware.smack.SmackException.NoResponseException;
import org.jivesoftware.smack.SmackException.NotConnectedException;
import org.jivesoftware.smack.SmackException.ConnectionException;
import org.jivesoftware.smack.SmackException.ResourceBindingNotOfferedException;
import org.jivesoftware.smack.SmackException.SecurityRequiredException;
import org.jivesoftware.smack.XMPPException.StreamErrorException;
@ -342,7 +341,6 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
* @throws XMPPException if an error occurs on the XMPP protocol level.
* @throws SmackException if an error occurs somewhere else besides XMPP protocol level.
* @throws IOException
* @throws ConnectionException with detailed information about the failed connection.
* @return a reference to this object, to chain <code>connect()</code> with <code>login()</code>.
* @throws InterruptedException
*/
@ -1554,7 +1552,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
/**
* Install a parsing exception callback, which will be invoked once an exception is encountered while parsing a
* stanza
* stanza.
*
* @param callback the callback to install
*/

View File

@ -497,7 +497,7 @@ public abstract class ConnectionConfiguration {
/**
* Sets the PKCS11 library file location, needed when the
* Keystore type is PKCS11
* Keystore type is PKCS11.
*
* @param pkcs11Library the path to the PKCS11 library file.
* @return a reference to this builder.

View File

@ -19,9 +19,6 @@ package org.jivesoftware.smack;
import org.jivesoftware.smack.packet.Message;
/**
*
*/
public interface MessageListener {
void processMessage(Message message);
}

View File

@ -18,6 +18,7 @@
package org.jivesoftware.smack;
/**
* This interface is deprecated.
* @deprecated use {@link StanzaListener} instead
*/
@Deprecated

View File

@ -19,9 +19,6 @@ package org.jivesoftware.smack;
import org.jivesoftware.smack.packet.Presence;
/**
*
*/
public interface PresenceListener {
void processPresence(Presence presence);
}

View File

@ -121,7 +121,7 @@ public class ReconnectionManager {
}
/**
* Set the default Reconnection Policy to use
* Set the default Reconnection Policy to use.
*
* @param reconnectionPolicy
*/
@ -131,7 +131,7 @@ public class ReconnectionManager {
/**
* Set the fixed delay in seconds between the reconnection attempts Also set the connection
* policy to {@link ReconnectionPolicy#FIXED_DELAY}
* policy to {@link ReconnectionPolicy#FIXED_DELAY}.
*
* @param fixedDelay Delay expressed in seconds
*/
@ -141,7 +141,7 @@ public class ReconnectionManager {
}
/**
* Set the Reconnection Policy to use
* Set the Reconnection Policy to use.
*
* @param reconnectionPolicy
*/
@ -150,7 +150,7 @@ public class ReconnectionManager {
}
/**
* Flag that indicates if a reconnection should be attempted when abruptly disconnected
* Flag that indicates if a reconnection should be attempted when abruptly disconnected.
*/
private boolean automaticReconnectEnabled = false;
@ -357,17 +357,17 @@ public class ReconnectionManager {
/**
* Reconnection Policy, where {@link ReconnectionPolicy#RANDOM_INCREASING_DELAY} is the default policy used by smack and {@link ReconnectionPolicy#FIXED_DELAY} implies
* a fixed amount of time between reconnection attempts
* a fixed amount of time between reconnection attempts.
*/
public enum ReconnectionPolicy {
/**
* Default policy classically used by smack, having an increasing delay related to the
* overall number of attempts
* overall number of attempts.
*/
RANDOM_INCREASING_DELAY,
/**
* Policy using fixed amount of time between reconnection attempts
* Policy using fixed amount of time between reconnection attempts.
*/
FIXED_DELAY,
;

View File

@ -65,7 +65,7 @@ public class SASLAuthentication {
private static final Set<String> BLACKLISTED_MECHANISMS = new HashSet<String>();
/**
* Registers a new SASL mechanism
* Registers a new SASL mechanism.
*
* @param mechanism a SASLMechanism subclass.
*/

View File

@ -175,6 +175,8 @@ public final class SmackConfiguration {
}
/**
* Get the debugger factory.
*
* @return a debugger factory or <code>null</code>
*/
public static SmackDebuggerFactory getDebuggerFactory() {
@ -230,7 +232,7 @@ public final class SmackConfiguration {
}
/**
* Set the default parsing exception callback for all newly created connections
* Set the default parsing exception callback for all newly created connections.
*
* @param callback
* @see ParsingExceptionCallback
@ -240,7 +242,7 @@ public final class SmackConfiguration {
}
/**
* Returns the default parsing exception callback
* Returns the default parsing exception callback.
*
* @return the default parsing exception callback
* @see ParsingExceptionCallback

View File

@ -44,7 +44,7 @@ public class ReflectionDebuggerFactory implements SmackDebuggerFactory {
};
/**
* Sets custom debugger class to be created by this factory
* Sets custom debugger class to be created by this factory.
* @param debuggerClass class to be used by this factory
*/
public static void setDebuggerClass(Class<? extends SmackDebugger> debuggerClass) {
@ -56,7 +56,7 @@ public class ReflectionDebuggerFactory implements SmackDebuggerFactory {
}
/**
* Returns debugger class used by this factory
* Returns debugger class used by this factory.
* @return debugger class that will be used for instantiation by this factory
*/
@SuppressWarnings("unchecked")

View File

@ -24,9 +24,6 @@ import java.util.List;
import org.jivesoftware.smack.util.Objects;
/**
*
*/
public abstract class AbstractListFilter implements StanzaFilter {
/**

View File

@ -20,9 +20,6 @@ import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.packet.IQ;
import org.jivesoftware.smack.packet.Stanza;
/**
*
*/
public class IQResultReplyFilter extends IQReplyFilter {

View File

@ -20,7 +20,7 @@ package org.jivesoftware.smack.filter;
import org.jivesoftware.smack.packet.Message;
/**
* Filters message stanzas which have at least one body
* Filters message stanzas which have at least one body.
*/
public class MessageWithBodiesFilter extends FlexibleStanzaTypeFilter<Message> {

View File

@ -20,7 +20,7 @@ package org.jivesoftware.smack.filter;
import org.jivesoftware.smack.packet.Message;
/**
* Filters message stanzas which have at least one body
* Filters message stanzas which have at least one body.
*/
public class MessageWithSubjectFilter extends FlexibleStanzaTypeFilter<Message> {

View File

@ -39,7 +39,7 @@ public interface Packet extends TopLevelStreamElement {
public String getStanzaId();
/**
*
* Get the stanza id.
* @return the stanza id.
* @deprecated use {@link #getStanzaId()} instead.
*/
@ -55,7 +55,7 @@ public interface Packet extends TopLevelStreamElement {
public void setStanzaId(String id);
/**
*
* Set the stanza ID.
* @param packetID
* @deprecated use {@link #setStanzaId(String)} instead.
*/

View File

@ -304,7 +304,7 @@ public final class Presence extends Stanza implements TypedCloneable<Presence> {
error,
/**
* A presence probe as defined in section 4.3 of RFC 6121
* A presence probe as defined in section 4.3 of RFC 6121.
*/
probe,
;

View File

@ -105,7 +105,7 @@ public abstract class Stanza implements TopLevelStreamElement {
}
/**
*
* Get the Stanza ID.
* @return the stanza id.
* @deprecated use {@link #getStanzaId()} instead.
*/
@ -128,7 +128,7 @@ public abstract class Stanza implements TopLevelStreamElement {
}
/**
*
* Set the stanza ID.
* @param packetID
* @deprecated use {@link #setStanzaId(String)} instead.
*/

View File

@ -149,7 +149,7 @@ public class StreamError extends AbstractError implements PlainStreamElement {
}
/**
* The defined stream error conditions, see RFC 6120 § 4.9.3
* The defined stream error conditions, see RFC 6120 § 4.9.3.
*
*/
public enum Condition {

View File

@ -21,7 +21,7 @@ import org.jivesoftware.smack.util.StringUtils;
import org.jivesoftware.smack.util.XmlStringBuilder;
/**
*
* The stream open <b>tag</b>.
*/
public class StreamOpen extends FullStreamElement {
@ -31,32 +31,32 @@ public class StreamOpen extends FullStreamElement {
public static final String SERVER_NAMESPACE = "jabber:server";
/**
* RFC 6120 § 4.7.5
* RFC 6120 § 4.7.5.
*/
public static final String VERSION = "1.0";
/**
* RFC 6120 § 4.7.1
* RFC 6120 § 4.7.1.
*/
private final String from;
/**
* RFC 6120 § 4.7.2
* RFC 6120 § 4.7.2.
*/
private final String to;
/**
* RFC 6120 § 4.7.3
* RFC 6120 § 4.7.3.
*/
private final String id;
/**
* RFC 6120 § 4.7.4
* RFC 6120 § 4.7.4.
*/
private final String lang;
/**
* RFC 6120 § 4.8.2
* RFC 6120 § 4.8.2.
*/
private final String contentNamespace;

View File

@ -34,7 +34,7 @@ public class UnparsablePacket {
}
/**
*
* Get the exception that caused the parser to fail.
* @return the exception that caused the parser to fail
*/
public Exception getParsingException() {
@ -42,7 +42,7 @@ public class UnparsablePacket {
}
/**
* Retrieve the raw stanza data
* Retrieve the raw stanza data.
*
* @return the raw stanza data
*/

View File

@ -18,9 +18,6 @@ package org.jivesoftware.smack.provider;
import org.jivesoftware.smack.packet.ExtensionElement;
/**
*
*/
public final class StreamFeatureProviderInfo extends AbstractProviderInfo {
/**

View File

@ -26,7 +26,7 @@ import java.net.UnknownHostException;
import javax.net.SocketFactory;
/**
* Socket factory for socks4 proxy
* Socket factory for socks4 proxy.
*
* @author Atul Aggarwal
*/

View File

@ -25,7 +25,7 @@ import java.net.UnknownHostException;
import javax.net.SocketFactory;
/**
* Socket factory for Socks5 proxy
* Socket factory for Socks5 proxy.
*
* @author Atul Aggarwal
*/

View File

@ -21,7 +21,7 @@ import org.jivesoftware.smack.SmackException;
import javax.security.auth.callback.CallbackHandler;
/**
* Implementation of the SASL ANONYMOUS mechanism
* Implementation of the SASL ANONYMOUS mechanism.
*
* @author Jay Kline
*/

View File

@ -122,7 +122,7 @@ public class SaslStreamElements {
final private String data;
/**
* Construct a new SASL success stream element with optional additional data for the SASL layer
* Construct a new SASL success stream element with optional additional data for the SASL layer.
* (RFC6120 6.3.10)
*
* @param data additional data for the SASL layer or <code>null</code>
@ -151,7 +151,7 @@ public class SaslStreamElements {
}
/**
* A SASL failure stream element, also called "SASL Error"
* A SASL failure stream element, also called "SASL Error".
* @see <a href="http://xmpp.org/rfcs/rfc6120.html#sasl-errors">RFC 6120 6.5 SASL Errors</a>
*/
public static class SASLFailure extends AbstractError implements PlainStreamElement {
@ -188,6 +188,7 @@ public class SaslStreamElements {
}
/**
* Get the SASL error as String.
* @return the SASL error as String
*/
public String getSASLErrorString() {

View File

@ -96,7 +96,7 @@ public final class FileUtils {
}
/**
* Reads the contents of a File
* Reads the contents of a File.
*
* @param file
* @return the content of file or null in case of an error

View File

@ -28,7 +28,6 @@ import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.jivesoftware.smack.SmackException;
import org.jivesoftware.smack.compress.packet.Compress;
import org.jivesoftware.smack.packet.DefaultExtensionElement;
import org.jivesoftware.smack.packet.EmptyResultIQ;
@ -593,9 +592,7 @@ public class PacketParserUtils {
*
* @param parser the XML parser, positioned at the start of an IQ packet.
* @return an IQ object.
* @throws XmlPullParserException
* @throws IOException
* @throws SmackException
* @throws Exception
*/
public static IQ parseIQ(XmlPullParser parser) throws Exception {
ParserUtils.assertAtStartTag(parser);
@ -887,6 +884,7 @@ public class PacketParserUtils {
}
/**
* Parse an extension element.
* @deprecated use {@link #parseExtensionElement(String, String, XmlPullParser)} instead.
*/
@Deprecated

View File

@ -23,7 +23,7 @@ import org.jivesoftware.smack.packet.ExtensionElement;
public class PacketUtil {
/**
* Get a extension element from a collection
* Get a extension element from a collection.
*
* @param collection
* @param element
@ -39,7 +39,7 @@ public class PacketUtil {
}
/**
* Get a extension element from a collection
* Get a extension element from a collection.
*
* @param collection
* @param element

View File

@ -187,7 +187,7 @@ public class StringUtils {
}
/**
* Returns true if CharSequence is not null and is not empty, false otherwise
* Returns true if CharSequence is not null and is not empty, false otherwise.
* Examples:
* isNotEmpty(null) - false
* isNotEmpty("") - false
@ -212,7 +212,7 @@ public class StringUtils {
}
/**
* Returns true if the given CharSequence is empty
* Returns true if the given CharSequence is empty.
*
* @param cs
* @return true if the given CharSequence is empty

View File

@ -50,6 +50,7 @@ public class XmlStringBuilder implements Appendable, CharSequence {
}
/**
* Add a new element to this builder.
*
* @param name
* @param content
@ -64,6 +65,7 @@ public class XmlStringBuilder implements Appendable, CharSequence {
}
/**
* Add a new element to this builder.
*
* @param name
* @param content
@ -158,7 +160,7 @@ public class XmlStringBuilder implements Appendable, CharSequence {
}
/**
* Add a right angle bracket '>'
* Add a right angle bracket '>'.
*
* @return a reference to this object.
*/
@ -168,7 +170,7 @@ public class XmlStringBuilder implements Appendable, CharSequence {
}
/**
*
* Add a right angle bracket '>'.
* @return a reference to this object
* @deprecated use {@link #rightAngleBracket()} instead
*/
@ -229,7 +231,7 @@ public class XmlStringBuilder implements Appendable, CharSequence {
}
/**
* Add the given attribute if value => 0
* Add the given attribute if {@code value => 0}.
*
* @param name
* @param value

View File

@ -17,6 +17,8 @@
package org.jivesoftware.smack.util.dns;
/**
* A DNS SRV RR.
*
* @see <a href="http://tools.ietf.org/html/rfc2782">RFC 2782: A DNS RR for specifying the location of services (DNS
* SRV)</a>
* @author Florian Schmaus
@ -28,7 +30,7 @@ public class SRVRecord extends HostAddress implements Comparable<SRVRecord> {
private int priority;
/**
* Create a new SRVRecord
* SRV Record constructor.
*
* @param fqdn Fully qualified domain name
* @param port The connection port

View File

@ -17,11 +17,13 @@
package org.jivesoftware.smack.util.stringencoder;
/**
* An interface for String encoder.
*
* @author Florian Schmaus
*/
public interface StringEncoder {
/**
* Encodes an string to another representation
* Encodes an string to another representation.
*
* @param string
* @return the encoded String
@ -29,7 +31,7 @@ public interface StringEncoder {
String encode(String string);
/**
* Decodes an string back to it's initial representation
* Decodes an string back to it's initial representation.
*
* @param string
* @return the decoded String

View File

@ -30,7 +30,7 @@ import org.jivesoftware.smack.packet.Stanza;
import org.jivesoftware.smack.packet.IQ.Type;
/**
*
* A threaded dummy connection.
* @author Robin Collier
*
*/

View File

@ -24,9 +24,6 @@ import org.jivesoftware.smack.filter.StanzaIdFilter;
import org.jivesoftware.smack.filter.ThreadFilter;
import org.junit.Test;
/**
*
*/
public class FilterToStringTest {
@Test

View File

@ -27,7 +27,7 @@ import org.jxmpp.jid.Jid;
import org.jxmpp.jid.JidTestUtil;
/**
*
* From matches filter test.
* @author Robin Collier
*
*/

View File

@ -30,9 +30,6 @@ import java.util.Collection;
import java.util.List;
import java.util.ArrayList;
/**
*
*/
public class MessageTest {
@Test

View File

@ -27,9 +27,6 @@ import org.xml.sax.SAXException;
import java.io.IOException;
/**
*
*/
public class PresenceTest {
@Test
public void setPresenceTypeTest() throws IOException, SAXException {

View File

@ -47,9 +47,6 @@ import org.xmlpull.v1.XmlPullParserException;
import com.jamesmurty.utils.XMLBuilder;
/**
*
*/
public class PacketParserUtilsTest {
private static Properties outputProperties = new Properties();

View File

@ -25,7 +25,7 @@ import java.io.Reader;
import java.io.Writer;
/**
* Implementation of SmackDebuggerFactory which always creates instance of SLF4JSmackDebugger
* Implementation of SmackDebuggerFactory which always creates instance of SLF4JSmackDebugger.
*/
public class SLF4JDebuggerFactory implements SmackDebuggerFactory {
@Override

View File

@ -55,14 +55,14 @@ public class SLF4JSmackDebugger implements SmackDebugger {
private ObservableReader reader;
/**
* Makes Smack use this Debugger
* Makes Smack use this Debugger.
*/
public static void enable() {
SmackConfiguration.setDebuggerFactory(new SLF4JDebuggerFactory());
}
/**
* Create new SLF4J Smack Debugger instance
* Create new SLF4J Smack Debugger instance.
* @param connection Smack connection to debug
* @param writer connection data writer to observe
* @param reader connection data reader to observe

View File

@ -19,7 +19,7 @@ package org.jivesoftware.smackx.carbons.packet;
import org.jivesoftware.smack.packet.SimpleIQ;
/**
* Carbon IQs
* Carbon IQs.
*/
public class Carbon {
public static final String NAMESPACE = "urn:xmpp:carbons:2";

View File

@ -21,7 +21,8 @@ import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smackx.csi.packet.ClientStateIndication;
/**
*
* Manager for Client State Indication.
*
* @see <a href="http://xmpp.org/extensions/xep-0352.html">XEP-0352: Client State Indication</a>
*
*/

View File

@ -20,7 +20,7 @@ import org.jivesoftware.smack.packet.FullStreamElement;
import org.jivesoftware.smack.packet.ExtensionElement;
/**
*
* Client State Indication.
* @see <a href="http://xmpp.org/extensions/xep-0352.html">XEP-0352: Client State Indication</a>
*
*/

View File

@ -246,7 +246,7 @@ public abstract class AbstractHttpOverXmpp extends IQ {
private final String text;
/**
* Creates this element.builder.toString();
* Creates this element.builder.toString().
*
* @param text value of text
*/

View File

@ -19,7 +19,7 @@ package org.jivesoftware.smackx.json.packet;
import org.jivesoftware.smack.packet.Stanza;
/**
* XMPP JSON Containers as defined in XEP-0335
* XMPP JSON Containers as defined in XEP-0335.
*
* @see <a href="http://xmpp.org/extensions/xep-0335.html">XEP-0335: JSON Containers</a>
*/

View File

@ -27,7 +27,7 @@ public class AMPDeliverCondition implements AMPExtension.Condition {
public static final String NAME = "deliver";
/**
* Check if server supports deliver condition
* Check if server supports deliver condition.
* @param connection Smack connection instance
* @return true if deliver condition is supported.
* @throws XMPPErrorException

View File

@ -31,7 +31,7 @@ public class AMPExpireAtCondition implements AMPExtension.Condition {
public static final String NAME = "expire-at";
/**
* Check if server supports expire-at condition
* Check if server supports expire-at condition.
* @param connection Smack connection instance
* @return true if expire-at condition is supported.
* @throws XMPPErrorException

View File

@ -79,7 +79,7 @@ public class AMPManager {
}
/**
* Check if server supports specified action
* Check if server supports specified action.
* @param connection active xmpp connection
* @param action action to check
* @return true if this action is supported.
@ -94,7 +94,7 @@ public class AMPManager {
}
/**
* Check if server supports specified condition
* Check if server supports specified condition.
* @param connection active xmpp connection
* @param conditionName name of condition to check
* @return true if this condition is supported.

View File

@ -27,7 +27,7 @@ public class AMPMatchResourceCondition implements AMPExtension.Condition {
public static final String NAME = "match-resource";
/**
* Check if server supports match-resource condition
* Check if server supports match-resource condition.
* @param connection Smack connection instance
* @return true if match-resource condition is supported.
* @throws XMPPErrorException
@ -63,7 +63,7 @@ public class AMPMatchResourceCondition implements AMPExtension.Condition {
}
/**
* match-resource amp condition value as defined by XEP-0079
* match-resource amp condition value as defined by XEP-0079.
* See http://xmpp.org/extensions/xep-0079.html#conditions-def-match
*/
public static enum Value {

View File

@ -59,6 +59,7 @@ public class AMPExtension implements ExtensionElement {
}
/**
* Get the JID that triggered this AMP callback.
* @return jid that triggered this amp callback.
*/
public String getFrom() {
@ -66,6 +67,7 @@ public class AMPExtension implements ExtensionElement {
}
/**
* Get the receiver of this AMP receipt.
* @return receiver of this amp receipt.
*/
public String getTo() {
@ -73,7 +75,7 @@ public class AMPExtension implements ExtensionElement {
}
/**
* Status of this amp notification
* Status of this amp notification.
* @return Status for this amp
*/
public Status getStatus() {
@ -217,7 +219,7 @@ public class AMPExtension implements ExtensionElement {
}
/**
* Interface for defining XEP-0079 Conditions and their values
* Interface for defining XEP-0079 Conditions and their values.
* @see AMPDeliverCondition
* @see AMPExpireAtCondition
* @see AMPMatchResourceCondition
@ -230,7 +232,7 @@ public class AMPExtension implements ExtensionElement {
}
/**
* amp action attribute
* amp action attribute.
* See http://xmpp.org/extensions/xep-0079.html#actions-def
**/
public static enum Action {
@ -267,7 +269,7 @@ public class AMPExtension implements ExtensionElement {
}
/**
* amp notification status as defined by XEP-0079
* amp notification status as defined by XEP-0079.
*/
public static enum Status {
alert,

View File

@ -23,11 +23,9 @@ import java.util.List;
import java.util.Map;
import java.util.WeakHashMap;
import org.jivesoftware.smack.SmackException;
import org.jivesoftware.smack.SmackException.NoResponseException;
import org.jivesoftware.smack.SmackException.NotConnectedException;
import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.XMPPException;
import org.jivesoftware.smack.XMPPException.XMPPErrorException;
import org.jivesoftware.smackx.iqprivate.PrivateDataManager;
@ -56,12 +54,9 @@ public class BookmarkManager {
* @param connection the connection for which the manager is desired.
* @return Returns the <i>BookmarkManager</i> for a connection, if it doesn't
* exist it is created.
* @throws XMPPException
* @throws SmackException thrown has not been authenticated.
* @throws IllegalArgumentException when the connection is null.
*/
public synchronized static BookmarkManager getBookmarkManager(XMPPConnection connection)
throws XMPPException, SmackException
{
BookmarkManager manager = bookmarkManagerMap.get(connection);
if (manager == null) {

View File

@ -128,7 +128,7 @@ public class InBandBytestreamManager implements BytestreamManager {
}
/**
* Maximum block size that is allowed for In-Band Bytestreams
* Maximum block size that is allowed for In-Band Bytestreams.
*/
public static final int MAXIMUM_BLOCK_SIZE = 65535;

View File

@ -818,6 +818,7 @@ public class InBandBytestreamSession implements BytestreamSession {
}
/**
* Process IQ stanza.
* @param data
* @throws NotConnectedException
* @throws InterruptedException

View File

@ -23,7 +23,7 @@ import org.jivesoftware.smack.util.stringencoder.Base64;
/**
* Represents a chunk of data of an In-Band Bytestream within an IQ stanza or a
* message stanza
* message stanza.
*
* @author Henning Staib
*/
@ -35,7 +35,7 @@ public class DataPacketExtension implements ExtensionElement {
public final static String ELEMENT = "data";
/**
* The XMPP namespace of the In-Band Bytestream
* The XMPP namespace of the In-Band Bytestream.
*/
public static final String NAMESPACE = "http://jabber.org/protocol/ibb";

View File

@ -35,7 +35,7 @@ public class Bytestream extends IQ {
public static final String ELEMENT = QUERY_ELEMENT;
/**
* The XMPP namespace of the SOCKS5 Bytestream
* The XMPP namespace of the SOCKS5 Bytestream.
*/
public static final String NAMESPACE = "http://jabber.org/protocol/bytestreams";
@ -50,7 +50,7 @@ public class Bytestream extends IQ {
private Activate toActivate;
/**
* The default constructor
* The default constructor.
*/
public Bytestream() {
super(ELEMENT, NAMESPACE);

View File

@ -127,7 +127,7 @@ public class EntityCapsManager extends Manager {
}
/**
* Set the default entity node that will be used for new EntityCapsManagers
* Set the default entity node that will be used for new EntityCapsManagers.
*
* @param entityNode
*/
@ -217,7 +217,7 @@ public class EntityCapsManager extends Manager {
}
/**
* Set the persistent cache implementation