diff --git a/build.gradle b/build.gradle index 63ab6d340..7358cf718 100644 --- a/build.gradle +++ b/build.gradle @@ -178,8 +178,7 @@ allprojects { // since the one paramater addStringOption doesn't seem to // work, we extra add '-quiet', which is added anyway by // gradle. - // TODO enable all doclints, see SMACK-650 - options.addStringOption('Xdoclint:all,-html', '-quiet') + options.addStringOption('Xdoclint:all', '-quiet') } } tasks.withType(Javadoc) { @@ -193,6 +192,10 @@ allprojects { configurations.errorprone { resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.0.15' } + + // Make all project's 'test' target depend on javadoc, so that + // javadoc is also linted. + test { dependsOn javadoc } } gradle.taskGraph.whenReady { taskGraph -> diff --git a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/android/ServerPingWithAlarmManager.java b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/android/ServerPingWithAlarmManager.java index 054bc0418..5b67cb944 100644 --- a/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/android/ServerPingWithAlarmManager.java +++ b/smack-android-extensions/src/main/java/org/jivesoftware/smackx/ping/android/ServerPingWithAlarmManager.java @@ -50,6 +50,7 @@ import android.os.SystemClock; * counted towards the scheduled delay time *
  • the scheduled Runnable is not run while the system is in deep sleep.
  • * + *

    * That is the reason Android comes with an API to schedule those tasks: AlarmManager. Which this * class uses to determine every 30 minutes if a server ping is necessary. The interval of 30 * minutes is the ideal trade-off between reliability and low resource (battery) consumption. diff --git a/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java b/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java index 483b6f217..6a2ea68b7 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/SmackConfiguration.java @@ -73,7 +73,6 @@ public final class SmackConfiguration { *

  • Server Traffic -- raw XML traffic sent by the server to the client. *
  • Interpreted Packets -- shows XML packets from the server as parsed by Smack. * - *

    * Debugging can be enabled by setting this field to true, or by setting the Java system * property smack.debugEnabled to true. The system property can be set on the * command line such as "java SomeApp -Dsmack.debugEnabled=true". diff --git a/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java b/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java index 6cace5edb..aee75aafc 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java @@ -34,7 +34,6 @@ import org.jxmpp.jid.EntityFullJid; * implements shared methods which are used by the different types of connections (e.g. * XMPPTCPConnection or XMPPBOSHConnection). To create a connection to an XMPP server * a simple usage of this API might look like the following: - *

    * *

      * // Create a connection to the igniterealtime.org XMPP server.
    @@ -54,7 +53,6 @@ import org.jxmpp.jid.EntityFullJid;
      * // Disconnect from the server
      * con.disconnect();
      * 
    - *

    *

    * Note that the XMPPConnection interface does intentionally not declare any methods that manipulate * the connection state, e.g. connect(), disconnect(). You should use the diff --git a/smack-core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java b/smack-core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java index 4b2035236..9fd4ca402 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java @@ -34,8 +34,8 @@ import java.util.zip.InflaterInputStream; *

    * See also: *

    * * @author Florian Schmaus diff --git a/smack-core/src/main/java/org/jivesoftware/smack/debugger/ConsoleDebugger.java b/smack-core/src/main/java/org/jivesoftware/smack/debugger/ConsoleDebugger.java index 306c0603e..264c1258c 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/debugger/ConsoleDebugger.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/debugger/ConsoleDebugger.java @@ -28,11 +28,12 @@ import org.jivesoftware.smack.XMPPConnection; /** * Very simple debugger that prints to the console (stdout) the sent and received stanzas. Use * this debugger with caution since printing to the console is an expensive operation that may - * even block the thread since only one thread may print at a time.

    - *

    + * even block the thread since only one thread may print at a time. + *

    * It is possible to not only print the raw sent and received stanzas but also the interpreted * packets by Smack. By default interpreted packets won't be printed. To enable this feature * just change the printInterpreted static variable to true. + *

    * * @author Gaston Dombiak */ diff --git a/smack-core/src/main/java/org/jivesoftware/smack/debugger/JulDebugger.java b/smack-core/src/main/java/org/jivesoftware/smack/debugger/JulDebugger.java index 2fbcfeee1..b6db485e1 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/debugger/JulDebugger.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/debugger/JulDebugger.java @@ -26,11 +26,12 @@ import org.jivesoftware.smack.XMPPConnection; /** * Very simple debugger that prints to the console (stdout) the sent and received stanzas. Use * this debugger with caution since printing to the console is an expensive operation that may - * even block the thread since only one thread may print at a time.

    - *

    + * even block the thread since only one thread may print at a time. + *

    * It is possible to not only print the raw sent and received stanzas but also the interpreted * packets by Smack. By default interpreted packets won't be printed. To enable this feature * just change the printInterpreted static variable to true. + *

    * * @author Gaston Dombiak */ diff --git a/smack-core/src/main/java/org/jivesoftware/smack/packet/ErrorIQ.java b/smack-core/src/main/java/org/jivesoftware/smack/packet/ErrorIQ.java index 9aafdbd10..12cff6e3f 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/packet/ErrorIQ.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/packet/ErrorIQ.java @@ -25,7 +25,7 @@ public class ErrorIQ extends SimpleIQ { /** * Constructs a new error IQ. *

    - * According to RFC 6120 § 8.3.1 "4. An error stanza MUST contain an child element.", so the xmppError argument is mandatory. + * According to RFC 6120 § 8.3.1 "4. An error stanza MUST contain an <error/> child element.", so the xmppError argument is mandatory. *

    * @param xmppErrorBuilder the XMPPError builder (required). */ diff --git a/smack-core/src/main/java/org/jivesoftware/smack/packet/Packet.java b/smack-core/src/main/java/org/jivesoftware/smack/packet/Packet.java index b64c9712d..1f24e8eec 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/packet/Packet.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/packet/Packet.java @@ -135,7 +135,7 @@ public interface Packet extends TopLevelStreamElement { List getExtensions(); /** - * Return a set of all extensions with the given element name and namespace. + * Return a set of all extensions with the given element name and namespace. *

    * Changes to the returned set will update the stanza(/packet) extensions, if the returned set is not the empty set. *

    diff --git a/smack-core/src/main/java/org/jivesoftware/smack/packet/Stanza.java b/smack-core/src/main/java/org/jivesoftware/smack/packet/Stanza.java index 8c0d94047..daa46d7bc 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/packet/Stanza.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/packet/Stanza.java @@ -70,7 +70,7 @@ public abstract class Stanza implements TopLevelStreamElement { * Such an attribute is defined for all stanza types. For IQ, see for * example XEP-50 3.7: * "The requester SHOULD provide its locale information using the "xml:lang - * " attribute on either the (RECOMMENDED) or element." + * " attribute on either the <iq/> (RECOMMENDED) or <command/> element." *

    */ protected String language; diff --git a/smack-core/src/main/java/org/jivesoftware/smack/packet/XMPPError.java b/smack-core/src/main/java/org/jivesoftware/smack/packet/XMPPError.java index 2629a7122..e771248ae 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/packet/XMPPError.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/packet/XMPPError.java @@ -34,7 +34,7 @@ import org.jivesoftware.smack.util.XmlStringBuilder; * * * - *
    + * * * * diff --git a/smack-core/src/main/java/org/jivesoftware/smack/sasl/SASLMechanism.java b/smack-core/src/main/java/org/jivesoftware/smack/sasl/SASLMechanism.java index bb51511a4..08f93efb3 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/sasl/SASLMechanism.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/sasl/SASLMechanism.java @@ -35,6 +35,7 @@ import org.jxmpp.jid.EntityBareJid; /** * Base class for SASL mechanisms. * Subclasses will likely want to implement their own versions of these methods: + *
      *
    • {@link #authenticate(String, String, DomainBareJid, String, EntityBareJid, SSLSession)} -- Initiate authentication stanza using the * deprecated method.
    • *
    • {@link #authenticate(String, DomainBareJid, CallbackHandler, EntityBareJid, SSLSession)} -- Initiate authentication stanza diff --git a/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebugger.java b/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebugger.java index f288e8d63..0d9dc120c 100644 --- a/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebugger.java +++ b/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebugger.java @@ -93,10 +93,11 @@ import org.jxmpp.jid.Jid; /** * The EnhancedDebugger is a debugger that allows to debug sent, received and interpreted messages - * but also provides the ability to send ad-hoc messages composed by the user.

      - *

      + * but also provides the ability to send ad-hoc messages composed by the user. + *

      * A new EnhancedDebugger will be created for each connection to debug. All the EnhancedDebuggers * will be shown in the same debug window provided by the class EnhancedDebuggerWindow. + *

      * * @author Gaston Dombiak */ diff --git a/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebuggerWindow.java b/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebuggerWindow.java index 879d8b5b4..a9de67ad0 100644 --- a/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebuggerWindow.java +++ b/smack-debug/src/main/java/org/jivesoftware/smackx/debugger/EnhancedDebuggerWindow.java @@ -49,10 +49,11 @@ import org.jivesoftware.smack.provider.ProviderManager; /** * The EnhancedDebuggerWindow is the main debug window that will show all the EnhancedDebuggers. * For each connection to debug there will be an EnhancedDebugger that will be shown in the - * EnhancedDebuggerWindow.

      - *

      + * EnhancedDebuggerWindow. + *

      * This class also provides information about Smack like for example the Smack version and the * installed providers. + *

      * * @author Gaston Dombiak */ diff --git a/smack-experimental/src/main/java/org/jivesoftware/smackx/mam/MamManager.java b/smack-experimental/src/main/java/org/jivesoftware/smackx/mam/MamManager.java index 35abea501..7c2a50832 100644 --- a/smack-experimental/src/main/java/org/jivesoftware/smackx/mam/MamManager.java +++ b/smack-experimental/src/main/java/org/jivesoftware/smackx/mam/MamManager.java @@ -418,7 +418,7 @@ public final class MamManager extends Manager { /** * Obtain page before the first message saved (specific chat). *

      - * Note that the messageUid is the XEP-0313 UID and not the stanza ID of the message. + * Note that the messageUid is the XEP-0313 UID and not the stanza ID of the message. *

      * * @param chatJid @@ -442,7 +442,7 @@ public final class MamManager extends Manager { /** * Obtain page after the last message saved (specific chat). *

      - * Note that the messageUid is the XEP-0313 UID and not the stanza ID of the message. + * Note that the messageUid is the XEP-0313 UID and not the stanza ID of the message. *

      * * @param chatJid @@ -615,7 +615,7 @@ public final class MamManager extends Manager { * @throws XMPPErrorException * @throws NoResponseException * @throws InterruptedException - * @depreacted use {@link #isSupported()} instead. + * @deprecated use {@link #isSupported()} instead. */ @Deprecated // TODO Remove in Smack 4.3 diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/amp/packet/AMPExtension.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/amp/packet/AMPExtension.java index c8b696cc3..dfb9d3f30 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/amp/packet/AMPExtension.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/amp/packet/AMPExtension.java @@ -238,9 +238,9 @@ public class AMPExtension implements ExtensionElement { **/ public enum Action { /** - * The "alert" action triggers a reply stanza to the sending entity. - * This stanza MUST contain the element , - * which itself contains the that triggered this action. In all other respects, + * The "alert" action triggers a reply <message/> stanza to the sending entity. + * This <message/> stanza MUST contain the element <amp status='alert'/>, + * which itself contains the <rule/> that triggered this action. In all other respects, * this action behaves as "drop". */ alert, @@ -251,16 +251,16 @@ public class AMPExtension implements ExtensionElement { */ drop, /** - * The "error" action triggers a reply stanza of type "error" to the sending entity. - * The stanza's child MUST contain a - * error condition, + * The "error" action triggers a reply <message/> stanza of type "error" to the sending entity. + * The <message/> stanza's <error/> child MUST contain a + * <failed-rules xmlns='http://jabber.org/protocol/amp#errors'/> error condition, * which itself contains the rules that triggered this action. */ error, /** - * The "notify" action triggers a reply stanza to the sending entity. - * This stanza MUST contain the element , which itself - * contains the that triggered this action. Unlike the other actions, + * The "notify" action triggers a reply <message/> stanza to the sending entity. + * This <message/> stanza MUST contain the element <amp status='notify'/>, which itself + * contains the <rule/> that triggered this action. Unlike the other actions, * this action does not override the default behavior for a server. * Instead, the server then executes its default behavior after sending the notify. */ diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/BookmarkManager.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/BookmarkManager.java index 45ed9ab2b..3bbcb79e9 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/BookmarkManager.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/BookmarkManager.java @@ -37,7 +37,7 @@ import org.jxmpp.jid.parts.Resourcepart; /** * Provides methods to manage bookmarks in accordance with XEP-0048. Methods for managing URLs and * Conferences are provided. - *

      + * * It should be noted that some extensions have been made to the XEP. There is an attribute on URLs * that marks a url as a news feed and also a sub-element can be added to either a URL or conference * indicated that it is shared amongst all users on a server. diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/Bookmarks.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/Bookmarks.java index e3937f957..9b97e8528 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/Bookmarks.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/bookmarks/Bookmarks.java @@ -36,12 +36,10 @@ import org.xmlpull.v1.XmlPullParserException; * Bookmark Storage (XEP-0048) defined a protocol for the storage of bookmarks to conference rooms and other entities * in a Jabber user's account. * See the following code sample for saving Bookmarks: - *

      *

        * XMPPConnection con = new XMPPTCPConnection("jabber.org");
        * con.login("john", "doe");
        * Bookmarks bookmarks = new Bookmarks();
      - * 

      * // Bookmark a URL * BookmarkedURL url = new BookmarkedURL(); * url.setName("Google"); @@ -56,8 +54,6 @@ import org.xmlpull.v1.XmlPullParserException; * // Save Bookmarks using PrivateDataManager. * PrivateDataManager manager = new PrivateDataManager(con); * manager.setPrivateData(bookmarks); - *

      - *

      * LastActivity activity = LastActivity.getLastActivity(con, "xray@jabber.org"); *

      * diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/bytestreams/BytestreamSession.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/bytestreams/BytestreamSession.java index b38357021..ccac7fc55 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/bytestreams/BytestreamSession.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/bytestreams/BytestreamSession.java @@ -73,7 +73,7 @@ public interface BytestreamSession { * read() call on the input stream associated with this session will block for only this amount * of time. If the timeout expires, a java.net.SocketTimeoutException is raised, though the * session is still valid. The option must be enabled prior to entering the blocking operation - * to have effect. The timeout must be > 0. A timeout of zero is interpreted as an infinite + * to have effect. The timeout must be > 0. A timeout of zero is interpreted as an infinite * timeout. Default is 0. * * @param timeout the specified timeout, in milliseconds diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/caps/packet/CapsExtension.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/caps/packet/CapsExtension.java index 8beec44b7..c4dffbcb1 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/caps/packet/CapsExtension.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/caps/packet/CapsExtension.java @@ -61,10 +61,10 @@ public class CapsExtension implements ExtensionElement { * {@inheritDoc}. * *
      -     *  
      +     *     ver='QgayPKawpkPSDYmwT/WM94uAlu0='/>
            * 
      * */ diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/AdHocCommand.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/AdHocCommand.java index 2619191d5..48a2ca8c7 100755 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/AdHocCommand.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/AdHocCommand.java @@ -38,6 +38,7 @@ import org.jxmpp.jid.Jid; * getForm method retrieves a form with all the users. *

      * Each command has a node that should be unique within a given JID. + *

      *

      * Commands may have zero or more stages. Each stage is usually used for * gathering information required for the command execution. Users are able to @@ -49,21 +50,22 @@ import org.jxmpp.jid.Jid; * have to provide the data forms the user must complete in each stage and the * allowed actions the user might perform during each stage (e.g. go to the * previous stage or go to the next stage). - *

      + *

      * All the actions may throw an XMPPException if there is a problem executing * them. The XMPPError of that exception may have some specific * information about the problem. The possible extensions are: - * + *
        *
      • malformed-action. Extension of a bad-request error.
      • *
      • bad-action. Extension of a bad-request error.
      • *
      • bad-locale. Extension of a bad-request error.
      • *
      • bad-payload. Extension of a bad-request error.
      • *
      • bad-sessionid. Extension of a bad-request error.
      • *
      • session-expired. Extension of a not-allowed error.
      • + *
      *

      * See the SpecificErrorCondition class for detailed description * of each one. - *

      + *

      * Use the getSpecificErrorConditionFrom to obtain the specific * information from an XMPPError. * diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/LocalCommand.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/LocalCommand.java index 4865137e0..51af61483 100755 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/LocalCommand.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/commands/LocalCommand.java @@ -31,7 +31,7 @@ import org.jxmpp.jid.Jid; *
    • Current Stage
    • *
    • Available actions
    • *
    • Default action
    • - *

    + * * To implement a new command extend this class and implement all the abstract * methods. When implementing the actions remember that they could be invoked * several times, and that you must use the current stage number to know what to diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferNegotiator.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferNegotiator.java index 243af6190..b18e35f34 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferNegotiator.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferNegotiator.java @@ -269,7 +269,7 @@ public final class FileTransferNegotiator extends Manager { * Send a request to another user to send them a file. The other user has * the option of, accepting, rejecting, or not responding to a received file * transfer request. - *

    + *

    * If they accept, the stanza(/packet) will contain the other user's chosen stream * type to send the file across. The two choices this implementation * provides to the other user for file transfer are In-Band Bytestreams, * which is the fallback mechanism. - *

    + *

    + *

    * The other user may choose to decline the file request if they do not * desire the file, their client does not support XEP-0096, or if there are * no acceptable means to transfer the file. - *

    + *

    * Finally, if the other user does not respond this method will return null * after the specified timeout. * diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferRequest.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferRequest.java index bed6804a1..f6ba94dac 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferRequest.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferRequest.java @@ -122,7 +122,7 @@ public class FileTransferRequest { /** * Accepts this file transfer and creates the incoming file transfer. * - * @return Returns the IncomingFileTransfer on which the + * @return Returns the IncomingFileTransfer on which the * file transfer can be carried out. */ public IncomingFileTransfer accept() { diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/IncomingFileTransfer.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/IncomingFileTransfer.java index 6e4afef41..4d025b632 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/IncomingFileTransfer.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/IncomingFileTransfer.java @@ -42,12 +42,12 @@ import org.jivesoftware.smack.XMPPException.XMPPErrorException; * user on the jabber network. There are two stages of the file transfer to be * concerned with and they can be handled in different ways depending upon the * method that is invoked on this class. - *

    + * * The first way that a file is recieved is by calling the * {@link #recieveFile()} method. This method, negotiates the appropriate stream - * method and then returns the InputStream to read the file + * method and then returns the InputStream to read the file * data from. - *

    + * * The second way that a file can be recieved through this class is by invoking * the {@link #recieveFile(File)} method. This method returns immediatly and * takes as its parameter a file on the local file system where the file @@ -98,10 +98,10 @@ public class IncomingFileTransfer extends FileTransfer { /** * This method negotitates the stream and then transfer's the file over the negotiated stream. * The transfered file will be saved at the provided location. - *

    + * * This method will return immedialtly, file transfer progress can be monitored through several * methods: - *

    + * *

      *
    • {@link FileTransfer#getStatus()} *
    • {@link FileTransfer#getProgress()} diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/forward/packet/Forwarded.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/forward/packet/Forwarded.java index c12f1edcf..64120527a 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/forward/packet/Forwarded.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/forward/packet/Forwarded.java @@ -23,7 +23,7 @@ import org.jivesoftware.smack.util.XmlStringBuilder; import org.jivesoftware.smackx.delay.packet.DelayInformation; /** - * Stanza(/Packet) extension for >XEP-0297: Stanza Forwarding. + * Stanza extension for XEP-0297: Stanza Forwarding. * * @author Georg Lukas * @see XEP-0297: Stanza Forwarding diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/iqlast/LastActivityManager.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/iqlast/LastActivityManager.java index dd9385b94..02938b982 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/iqlast/LastActivityManager.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/iqlast/LastActivityManager.java @@ -48,7 +48,6 @@ import org.jxmpp.jid.Jid; * associated with a Jabber ID. A manager handles incoming LastActivity requests * of existing Connections. It also allows to request last activity information * of other users. - *

      * * LastActivity (XEP-0012) based on the sending JID's type allows for retrieval * of: @@ -58,11 +57,9 @@ import org.jxmpp.jid.Jid; * specified when doing so. *

    • How long a host has been up. * - *

      * * For example to get the idle time of a user logged in a resource, simple send * the LastActivity stanza(/packet) to them, as in the following code: - *

      * *

        * XMPPConnection con = new XMPPTCPConnection("jabber.org");
      diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/jiveproperties/JivePropertiesManager.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/jiveproperties/JivePropertiesManager.java
      index 63123db1c..c62c45543 100644
      --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/jiveproperties/JivePropertiesManager.java
      +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/jiveproperties/JivePropertiesManager.java
      @@ -34,9 +34,10 @@ public class JivePropertiesManager {
            * you are sure that you understand the potential security implications it can cause.
            * 

      * See also: + *

      *
        - *
      • "What is the security impact of deserializing untrusted data in Java?" on Stackoverflow - * * @param enabled true to enable Java object deserialization */ public static void setJavaObjectEnabled(boolean enabled) { diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/message_correct/element/MessageCorrectExtension.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/message_correct/element/MessageCorrectExtension.java index fe2f50adf..c7411dfaf 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/message_correct/element/MessageCorrectExtension.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/message_correct/element/MessageCorrectExtension.java @@ -28,8 +28,8 @@ import org.jivesoftware.smack.util.XmlStringBuilder; * the XEP for more implementation guidelines. * * @author Fernando Ramirez, f.e.ramirez94@gmail.com - * @see XEP-0308: Last& - * nbsp;Message Correction + * @see XEP-0308: Last + *  Message Correction */ public class MessageCorrectExtension implements ExtensionElement { diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/DiscussionHistory.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/DiscussionHistory.java index c9a2c77c7..37556d47a 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/DiscussionHistory.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/DiscussionHistory.java @@ -28,11 +28,11 @@ import org.jivesoftware.smackx.muc.packet.MUCInitialPresence; * * You can use some or all of these variable to control the amount of history to receive: *
          - *
        • maxchars -> total number of characters to receive in the history. - *
        • maxstanzas -> total number of messages to receive in the history. - *
        • seconds -> only the messages received in the last "X" seconds will be included in the + *
        • maxchars -> total number of characters to receive in the history. + *
        • maxstanzas -> total number of messages to receive in the history. + *
        • seconds -> only the messages received in the last "X" seconds will be included in the * history. - *
        • since -> only the messages received since the datetime specified will be included in + *
        • since -> only the messages received since the datetime specified will be included in * the history. *
        * diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/packet/MUCItem.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/packet/MUCItem.java index 662dc842c..9da830853 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/packet/MUCItem.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/muc/packet/MUCItem.java @@ -130,7 +130,7 @@ public class MUCItem implements NamedElement { } /** - * Returns the by which an occupant is identified within the context of a + * Returns the <room@service/nick> by which an occupant is identified within the context of a * room. If the room is non-anonymous, the JID will be included in the item. * * @return the room JID by which an occupant is identified within the room. diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/privacy/packet/Privacy.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/privacy/packet/Privacy.java index d96846fc6..659c6d35f 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/privacy/packet/Privacy.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/privacy/packet/Privacy.java @@ -29,7 +29,7 @@ import org.jivesoftware.smack.packet.IQ; * and {@link org.jivesoftware.smackx.privacy.provider.PrivacyProvider} to allow and block * communications from other users. It contains the appropriate structure to suit * user-defined privacy lists. Different configured Privacy packages are used in the - * server & manager communication in order to: + * server and manager communication in order to: *
          *
        • Retrieving one's privacy lists. *
        • Adding, removing, and editing one's privacy lists. diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/search/UserSearch.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/search/UserSearch.java index decef6b00..ccf35357d 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/search/UserSearch.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/search/UserSearch.java @@ -37,7 +37,7 @@ import org.xmlpull.v1.XmlPullParser; * has been used mainly to search for people who have registered with user directories (e.g., the "Jabber User Directory" hosted at users.jabber.org). * However, the jabber:iq:search protocol is not limited to user directories, and could be used to search other Jabber information repositories * (such as chatroom directories) or even to provide a Jabber interface to conventional search engines. - *

          + * * The basic functionality is to query an information repository regarding the possible search fields, to send a search query, and to receive search results. * * @author Derek DeMoro diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/si/packet/StreamInitiation.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/si/packet/StreamInitiation.java index 4a11bf22e..6c6ad98e3 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/si/packet/StreamInitiation.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/si/packet/StreamInitiation.java @@ -51,7 +51,7 @@ public class StreamInitiation extends IQ { /** * The "id" attribute is an opaque identifier. This attribute MUST be * present on type='set', and MUST be a valid string. This SHOULD NOT be - * sent back on type='result', since the "id" attribute provides the + * sent back on type='result', since the <iq/> "id" attribute provides the * only context needed. This value is generated by the Sender, and the same * value MUST be used throughout a session when talking to the Receiver. * @@ -75,7 +75,7 @@ public class StreamInitiation extends IQ { * The "mime-type" attribute identifies the MIME-type for the data across * the stream. This attribute MUST be a valid MIME-type as registered with * the Internet Assigned Numbers Authority (IANA) [3] (specifically, as - * listed at ). During + * listed at <http://www.iana.org/assignments/media-types>). During * negotiation, this attribute SHOULD be present, and is otherwise not * required. If not included during negotiation, its value is assumed to be * "binary/octet-stream". @@ -168,26 +168,23 @@ public class StreamInitiation extends IQ { * using the DateTime profile as described in Jabber Date and Time Profiles.

        • *
        • hash: The MD5 sum of the file contents.
        • *
        - *

        - *

        + *

        * <desc> is used to provide a sender-generated description of the * file so the receiver can better understand what is being sent. It MUST * NOT be sent in the result. - *

        - *

        + *

        + *

        * When <range> is sent in the offer, it should have no attributes. * This signifies that the sender can do ranged transfers. When a Stream - * Initiation result is sent with the element, it uses these + * Initiation result is sent with the <range> element, it uses these * attributes: - *

        + *

        *
          *
        • offset: Specifies the position, in bytes, to start transferring the * file data from. This defaults to zero (0) if not specified.
        • *
        • length - Specifies the number of bytes to retrieve starting at * offset. This defaults to the length of the file from offset to the end.
        • *
        - *

        - *

        * Both attributes are OPTIONAL on the <range> element. Sending no * attributes is synonymous with not sending the <range> element. When * no <range> element is sent in the Stream Initiation result, the diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/vcardtemp/packet/VCard.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/vcardtemp/packet/VCard.java index a2eaf86af..4ef50b2c6 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/vcardtemp/packet/VCard.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/vcardtemp/packet/VCard.java @@ -47,19 +47,19 @@ import org.jxmpp.jid.EntityBareJid; /** * A VCard class for use with the * SMACK jabber library.

        - *

        + * * You should refer to the * XEP-54 documentation.

        - *

        + * * Please note that this class is incomplete but it does provide the most commonly found * information in vCards. Also remember that VCard transfer is not a standard, and the protocol * may change or be replaced.

        - *

        + * * Usage: *

        - * 

        + * * // To save VCard: - *

        + * * VCard vCard = new VCard(); * vCard.setFirstName("kir"); * vCard.setLastName("max"); @@ -67,16 +67,16 @@ import org.jxmpp.jid.EntityBareJid; * vCard.setJabberId("jabber@id.org"); * vCard.setOrganization("Jetbrains, s.r.o"); * vCard.setNickName("KIR"); - *

        + * * vCard.setField("TITLE", "Mr"); * vCard.setAddressFieldHome("STREET", "Some street"); * vCard.setAddressFieldWork("CTRY", "US"); * vCard.setPhoneWork("FAX", "3443233"); - *

        + * * vCard.save(connection); - *

        + * * // To load VCard: - *

        + * * VCard vCard = new VCard(); * vCard.load(conn); // load own VCard * vCard.load(conn, "joe@foo.bar"); // load someone's VCard @@ -441,10 +441,10 @@ public class VCard extends IQ { *

              * // Load Avatar from VCard
              * byte[] avatarBytes = vCard.getAvatar();
        -     * 

        + * * // To create an ImageIcon for Swing applications * ImageIcon icon = new ImageIcon(avatar); - *

        + * * // To create just an image object from the bytes * ByteArrayInputStream bais = new ByteArrayInputStream(avatar); * try { diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/xdata/packet/DataForm.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/xdata/packet/DataForm.java index 9e34c75dd..e9fefb7fe 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/xdata/packet/DataForm.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/xdata/packet/DataForm.java @@ -93,7 +93,7 @@ public class DataForm implements ExtensionElement { /** * Returns the description of the data. It is similar to the title on a web page or an X - * window. You can put a on either a form to fill out, or a set of data results. + * window. You can put a <title/> on either a form to fill out, or a set of data results. * * @return description of the data. */ @@ -184,7 +184,7 @@ public class DataForm implements ExtensionElement { /** * Sets the description of the data. It is similar to the title on a web page or an X window. - * You can put a <title/> on either a form to fill out, or a set of data results. + * You can put a <title/> on either a form to fill out, or a set of data results. * * @param title description of the data. */ diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/xdatavalidation/packet/ValidateElement.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/xdatavalidation/packet/ValidateElement.java index 41a40a032..bb5d0c136 100644 --- a/smack-extensions/src/main/java/org/jivesoftware/smackx/xdatavalidation/packet/ValidateElement.java +++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/xdatavalidation/packet/ValidateElement.java @@ -380,7 +380,7 @@ public abstract class ValidateElement implements ExtensionElement { } /** - * The <list-range/> element SHOULD be included only when the <field/> is of type "list-multi" and SHOULD be ignored + * The >list-range/< element SHOULD be included only when the <field/> is of type "list-multi" and SHOULD be ignored * otherwise. * * @param formField diff --git a/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java b/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java index 69d017d75..b5c6b2fef 100644 --- a/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java +++ b/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java @@ -77,14 +77,13 @@ import org.jxmpp.util.cache.LruCache; /** * Represents a user's roster, which is the collection of users a person receives * presence updates for. Roster items are categorized into groups for easier management. - * <p> + * * Others users may attempt to subscribe to this user using a subscription request. Three * modes are supported for handling these requests: <ul> * <li>{@link SubscriptionMode#accept_all accept_all} -- accept all subscription requests.</li> * <li>{@link SubscriptionMode#reject_all reject_all} -- reject all subscription requests.</li> * <li>{@link SubscriptionMode#manual manual} -- manually process all subscription requests.</li> * </ul> - * </p> * * @author Matt Tucker * @see #getInstanceFor(XMPPConnection) diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleException.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleException.java index 7a2a7acbb..e67dacc9e 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleException.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleException.java @@ -23,7 +23,7 @@ import org.jivesoftware.smackx.jingleold.packet.JingleError; /** * A Jingle exception. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public class JingleException extends XMPPException { private static final long serialVersionUID = -1521230401958103382L; diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleManager.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleManager.java index 28bcc2893..64c861de5 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleManager.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleManager.java @@ -56,34 +56,41 @@ import org.jxmpp.jid.Jid; * Jingle is a session establishment protocol defined in (XEP-0166). * It defines a framework for negotiating and managing out-of-band ( data that is send and receive through other connection than XMPP connection) data sessions over XMPP. * With this protocol you can setup VOIP Calls, Video Streaming, File transfers and whatever out-of-band session based transmission. - * <p/> + * <p> * To create a Jingle Session you need a Transport method and a Payload type. - * <p/> + * </p> + * <p> * A transport method is how it will transmit and receive network packets. Transport MUST have one or more candidates. * A transport candidate is an IP Address with a defined port, that other party must send data to. - * <p/> + * </p> + * <p> * A supported payload type, is the data encoding format that the jmf will be transmitted. * For instance an Audio Payload "GSM". - * <p/> + * </p> + * <p> * A Jingle session negotiates a payload type and a pair of transport candidates. * Which means that when a Jingle Session is established you will have two defined transport candidates with addresses * and a defined Payload type. * In other words, you will have two IP address with their respective ports, and a Codec type defined. - * <p/> + * </p> + * <p> * The JingleManager is a facade built upon Jabber Jingle (XEP-166) to allow the * use of Jingle. This implementation allows the user to simply * use this class for setting the Jingle parameters, create and receive Jingle Sessions. - * <p/> + * </p> + * <p> * In order to use the Jingle, the user must provide a * TransportManager that will handle the resolution of potential IP addresses that can be used to transport the streaming (jmf). * This TransportManager can be initialized with several default resolvers, * including a fixed solver that can be used when the address and port are know * in advance. * This API have ready to use Transport Managers, for instance: BasicTransportManager, STUNTransportManager, BridgedTransportManager. - * <p/> + * </p> + * <p> * You should also specify a JingleMediaManager if you want that JingleManager assume Media control * Using a JingleMediaManager implementation is the easier way to implement a Jingle Application. - * <p/> + * </p> + * <p> * Otherwise before creating an outgoing connection, the user must create jingle session * listeners that will be called when different events happen. The most * important event is <i>sessionEstablished()</i>, that will be called when all @@ -91,85 +98,60 @@ import org.jxmpp.jid.Jid; * transmission as well as the remote and local addresses and ports for the * communication. See JingleSessionListener for a complete list of events that can be * observed. - * <p/> + * </p> * This is an example of how to use the JingleManager: * <i>This example implements a Jingle VOIP Call between two users.</i> - * <p/> * <pre> - * <p/> * To wait for an Incoming Jingle Session: - * <p/> * try { - * <p/> * // Connect to an XMPP Server * XMPPConnection x1 = new XMPPTCPConnection("xmpp.com"); * x1.connect(); * x1.login("juliet", "juliet"); - * <p/> * // Create a JingleManager using a BasicResolver * final JingleManager jm1 = new JingleManager( * x1, new BasicTransportManager()); - * <p/> * // Create a JingleMediaManager. In this case using Jingle Audio Media API * JingleMediaManager jingleMediaManager = new AudioMediaManager(); - * <p/> * // Set the JingleMediaManager * jm1.setMediaManager(jingleMediaManager); - * <p/> * // Listen for incoming calls * jm1.addJingleSessionRequestListener(new JingleSessionRequestListener() { * public void sessionRequested(JingleSessionRequest request) { - * <p/> * try { * // Accept the call * IncomingJingleSession session = request.accept(); - * <p/> - * <p/> * // Start the call * session.start(); * } catch (XMPPException e) { * LOGGER.log(Level.WARNING, "exception", e); * } - * <p/> * } * }); - * <p/> * Thread.sleep(15000); - * <p/> * } catch (Exception e) { * LOGGER.log(Level.WARNING, "exception", e); * } - * <p/> * To create an Outgoing Jingle Session: - * <p/> * try { - * <p/> * // Connect to an XMPP Server * XMPPConnection x0 = new XMPPTCPConnection("xmpp.com"); * x0.connect(); * x0.login("romeo", "romeo"); - * <p/> * // Create a JingleManager using a BasicResolver * final JingleManager jm0 = new JingleManager( * x0, new BasicTransportManager()); - * <p/> * // Create a JingleMediaManager. In this case using Jingle Audio Media API * JingleMediaManager jingleMediaManager = new AudioMediaManager(); // Using Jingle Media API - * <p/> * // Set the JingleMediaManager * jm0.setMediaManager(jingleMediaManager); - * <p/> * // Create a new Jingle Call with a full JID * OutgoingJingleSession js0 = jm0.createOutgoingJingleSession("juliet@xmpp.com/Smack"); - * <p/> * // Start the call * js0.start(); - * <p/> * Thread.sleep(10000); * js0.terminate(); - * <p/> * Thread.sleep(3000); - * <p/> * } catch (Exception e) { * LOGGER.log(Level.WARNING, "exception", e); * } @@ -279,11 +261,11 @@ public class JingleManager implements JingleSessionListener { /** * Enables or disables the Jingle support on a given connection. - * <p/> - * <p/> + * <p> * Before starting any Jingle jmf session, check that the user can handle * it. Enable the Jingle support to indicate that this client handles Jingle * messages. + * </p> * * @param connection the connection where the service will be enabled or * disabled diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleNegotiator.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleNegotiator.java index 06e97f572..ddb2e08dc 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleNegotiator.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleNegotiator.java @@ -29,13 +29,10 @@ import org.jivesoftware.smackx.jingleold.listeners.JingleListener; /** * Basic Jingle negotiator. - * <p/> - * </p> - * <p/> + * <p> * JingleNegotiator implements some basic behavior for every Jingle negotiation. * It implements a "state" pattern: each stage should process Jingle packets and * act depending on the current state in the negotiation... - * <p/> * </p> * * @author Alvaro Saurin @@ -215,18 +212,18 @@ public abstract class JingleNegotiator { * Media Negotiator * Transport Negotiator * - * <jingle> - * <content> - * <description> - * <transport> - * <content> - * <description> - * <transport> + * <jingle> + * <content> + * <description> + * <transport> + * <content> + * <description> + * <transport> * * This way, each segment of a Jingle stanza(/packet) has a corresponding negotiator that know how to deal with that * part of the Jingle packet. It also allows us to support Jingle packets of arbitraty complexity. * - * Each parent calls dispatchIncomingPacket for each of its children. The children then pass back a List<> of + * Each parent calls dispatchIncomingPacket for each of its children. The children then pass back a List of * results that will get sent when we reach the top level negotiator (JingleSession). * * @param iq the stanza(/packet) received diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSession.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSession.java index aaa0ca9fe..9ea3924fd 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSession.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSession.java @@ -55,7 +55,7 @@ import org.jivesoftware.smackx.jingleold.packet.JingleError; import org.jxmpp.jid.Jid; /** - * An abstract Jingle session. <p/> This class contains some basic properties of + * An abstract Jingle session. This class contains some basic properties of * every Jingle session. However, the concrete implementation can be found in * subclasses. * @@ -270,7 +270,7 @@ public class JingleSession extends JingleNegotiator implements MediaReceivedList // ---------------------------------------------------------------------------------------------------------- /** - * Process and respond to an incoming packet. <p/> This method is called + * Process and respond to an incoming packet. This method is called * from the stanza(/packet) listener dispatcher when a new stanza(/packet) has arrived. The * method is responsible for recognizing the stanza(/packet) type and, depending on * the current state, delivering it to the right event handler and wait for @@ -394,7 +394,7 @@ public class JingleSession extends JingleNegotiator implements MediaReceivedList } /** - * Add a new content negotiator on behalf of a <content> section received. + * Add a new content negotiator on behalf of a <content/> section received. */ public void addContentNegotiator(ContentNegotiator inContentNegotiator) { contentNegotiators.add(inContentNegotiator); diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSessionRequest.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSessionRequest.java index 3ad9cc414..2584f3279 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSessionRequest.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/JingleSessionRequest.java @@ -28,7 +28,7 @@ import org.jxmpp.jid.Jid; /** * A Jingle session request. - * <p/> + * * This class is a facade of a received Jingle request. The user can have direct * access to the Jingle stanza(/packet) (<i>JingleSessionRequest.getJingle() </i>) of * the request or can use the convenience methods provided by this class. @@ -107,7 +107,7 @@ public class JingleSessionRequest { /** * Accepts this request and creates the incoming Jingle session. * - * @return Returns the <b><i>IncomingJingleSession</b></i> on which the + * @return Returns the IncomingJingleSession on which the * negotiation can be carried out. * @throws SmackException * @throws InterruptedException diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/ContentInfo.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/ContentInfo.java index 2f0ceb9b9..dbdcbd63b 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/ContentInfo.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/ContentInfo.java @@ -22,14 +22,14 @@ import java.util.Locale; * Content info. Content info messages are complementary messages that can be * transmitted for informing of events like "busy", "ringtone", etc. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class ContentInfo { /** * Audio content info messages. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public static class Audio extends ContentInfo { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaManager.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaManager.java index 2c28d0598..4b7cb43bf 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaManager.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaManager.java @@ -25,10 +25,11 @@ import org.jivesoftware.smackx.jingleold.nat.TransportCandidate; /** * This class provides necessary Jingle Session jmf methods and behavior. - * <p/> + * <p> * The goal of this class is to provide a flexible way to make JingleManager control jmf streaming APIs without implement them. * For instance you can implement a file transfer using java sockets or a VOIP Media Manager using JMF. * You can implement many JingleMediaManager according to you necessity. + * </p> * * @author Thiago Camargo */ diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaSession.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaSession.java index 18b60fb0b..44effa49e 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaSession.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/JingleMediaSession.java @@ -24,11 +24,11 @@ import org.jivesoftware.smackx.jingleold.nat.TransportCandidate; /** * Public Abstract Class provides a clear interface between Media Session and Jingle API. - * <p/> + * <p> * When a Jingle Session is fully stablished, we will have a Payload Type and two transport candidates defined for it. * Smack Jingle API don't implement Media Transmit and Receive methods. * But provides an interface to let the user implements it using another API. For instance: JMF. - * <p/> + * </p> * <i>The Class that implements this one, must have the support to transmit and receive the jmf.</i> * <i>This interface let the user choose his own jmf API.</i> * diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/MediaNegotiator.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/MediaNegotiator.java index 9b6600ecd..24d5545f5 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/MediaNegotiator.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/media/MediaNegotiator.java @@ -38,7 +38,7 @@ import org.jivesoftware.smackx.jingleold.packet.JingleDescription; import org.jivesoftware.smackx.jingleold.packet.JingleError; /** - * Manager for jmf descriptor negotiation. <p/> <p/> This class is responsible + * Manager for jmf descriptor negotiation. This class is responsible * for managing the descriptor negotiation process, handling all the xmpp * packets interchange and the stage control. handling all the xmpp packets * interchange and the stage control. diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/mediaimpl/jmf/AudioChannel.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/mediaimpl/jmf/AudioChannel.java index 0976aa5b3..fdd9c8689 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/mediaimpl/jmf/AudioChannel.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/mediaimpl/jmf/AudioChannel.java @@ -54,15 +54,17 @@ import org.jivesoftware.smackx.jingleold.media.JingleMediaSession; * It sends and receives jmf for and from desired IPs and ports. * Also has a rport Symetric behavior for better NAT Traversal. * It send data from a defined port and receive data in the same port, making NAT binds easier. - * <p/> + * <p> * Send from portA to portB and receive from portB in portA. - * <p/> + * </p> + * <p> * Sending - * portA ---> portB - * <p/> + * portA ---> portB + * </p> + * <p> * Receiving - * portB ---> portA - * <p/> + * portB ---> portA + * </p> * <i>Transmit and Receive are interdependence. To receive you MUST transmit. </i> * * @author Thiago Camargo diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BasicResolver.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BasicResolver.java index 5b210592f..c79e33803 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BasicResolver.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BasicResolver.java @@ -45,7 +45,7 @@ public class BasicResolver extends TransportResolver { /** * Resolve the IP address. - * <p/> + * * The BasicResolver takes the IP addresses of the interfaces and uses the * first non-loopback, non-linklocal and non-sitelocal address. * @throws NotConnectedException diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BridgedResolver.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BridgedResolver.java index 451da4ad1..84f4a4cbb 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BridgedResolver.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/BridgedResolver.java @@ -36,7 +36,7 @@ import org.jivesoftware.smackx.jingleold.JingleSession; /** * Bridged Resolver use a RTPBridge Service to add a relayed candidate. * A very reliable solution for NAT Traversal. - * <p/> + * * The resolver verify is the XMPP Server that the client is connected offer this service. * If the server supports, a candidate is requested from the service. * The resolver adds this candidate @@ -61,7 +61,7 @@ public class BridgedResolver extends TransportResolver { /**1 * Resolve Bridged Candidate. - * <p/> + * * The BridgedResolver takes the IP address and ports of a jmf proxy service. * @throws NotConnectedException * @throws InterruptedException diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/FixedResolver.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/FixedResolver.java index 9a9e8f2b4..0f96a01c5 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/FixedResolver.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/FixedResolver.java @@ -26,7 +26,7 @@ import org.jivesoftware.smackx.jingleold.JingleSession; * the external address and port are previously known when the object is * initialized. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public class FixedResolver extends TransportResolver { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/ICECandidate.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/ICECandidate.java index 6650ce0e8..f5f05b4d3 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/ICECandidate.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/ICECandidate.java @@ -24,7 +24,7 @@ import java.util.logging.Logger; /** * ICE Transport candidate. - * <p/> + * * A candidate represents the possible transport for data interchange between * the two endpoints. * @@ -216,7 +216,7 @@ public class ICECandidate extends TransportCandidate implements Comparable<ICECa * Check if a transport candidate is usable. The transport resolver should * check if the transport candidate the other endpoint has provided is * usable. - * <p/> + * * ICE Candidate can check connectivity using UDP echo Test. */ @Override diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/RTPBridge.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/RTPBridge.java index 33c8efd41..2a7c00fe4 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/RTPBridge.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/RTPBridge.java @@ -45,9 +45,9 @@ import org.xmlpull.v1.XmlPullParserException; * RTPBridge IQ Stanza(/Packet) used to request and retrieve a RTPBridge Candidates that can be used for a Jingle Media Transmission between two parties that are behind NAT. * This Jingle Bridge has all the needed information to establish a full UDP Channel (Send and Receive) between two parties. * <i>This transport method should be used only if other transport methods are not allowed. Or if you want a more reliable transport.</i> - * <p/> + * * High Level Usage Example: - * <p/> + * * RTPBridge rtpBridge = RTPBridge.getRTPBridge(connection, sessionID); * * @author Thiago Camargo diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUN.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUN.java index c934fb5e0..ed0d54003 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUN.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUN.java @@ -39,9 +39,9 @@ import org.xmlpull.v1.XmlPullParserException; /** * STUN IQ Stanza(/Packet) used to request and retrieve a STUN server and port to make p2p connections easier. STUN is usually used by Jingle Media Transmission between two parties that are behind NAT. - * <p/> + * * High Level Usage Example: - * <p/> + * * STUN stun = STUN.getSTUNServer(connection); * * @author Thiago Camargo diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUNResolver.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUNResolver.java index 69abdb4bb..ed07da13d 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUNResolver.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/STUNResolver.java @@ -199,7 +199,7 @@ public class STUNResolver extends TransportResolver { /** * Load a list of services: STUN servers and ports. Some public STUN servers * are: - * <p/> + * * <pre> * iphone-stun.freenet.de:3478 * larry.gloo.net:3478 @@ -212,7 +212,7 @@ public class STUNResolver extends TransportResolver { * stun.voxgratia.org (no DNS SRV record) * stun.noc.ams-ix.net * </pre> - * <p/> + * * This list should be contained in a file in the "META-INF" directory * * @return a list of services @@ -494,7 +494,7 @@ public class STUNResolver extends TransportResolver { /** * Check a binding with the STUN currentServer. - * <p/> + * * Note: this function blocks for some time, waiting for a response. * * @return true if the currentServer is usable. diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportCandidate.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportCandidate.java index de55a860a..7c0900903 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportCandidate.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportCandidate.java @@ -37,7 +37,7 @@ import org.jxmpp.jid.Jid; /** * Transport candidate. - * <p/> + * * A candidate represents the possible transport for data interchange between * the two endpoints. * @@ -346,7 +346,7 @@ public abstract class TransportCandidate { * Check if a transport candidate is usable. The transport resolver should * check if the transport candidate the other endpoint has provided is * usable. - * <p/> + * * Subclasses should provide better methods if they can... */ public void check(final List<TransportCandidate> localCandidates) { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportNegotiator.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportNegotiator.java index 783ef5501..4949cc6a3 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportNegotiator.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportNegotiator.java @@ -45,12 +45,11 @@ import org.jivesoftware.smackx.jingleold.packet.JingleTransport.JingleTransportC /** * Transport negotiator. - * <p/> - * <p/> + * * This class is responsible for managing the transport negotiation process, * handling all the stanza(/packet) interchange and the stage control. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class TransportNegotiator extends JingleNegotiator { @@ -829,7 +828,7 @@ public abstract class TransportNegotiator extends JingleNegotiator { /** * Raw-UDP transport negotiator. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public static final class RawUdp extends TransportNegotiator { @@ -884,7 +883,7 @@ public abstract class TransportNegotiator extends JingleNegotiator { /** * Ice transport negotiator. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public static final class Ice extends TransportNegotiator { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportResolver.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportResolver.java index d01b41718..54dc57bf2 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportResolver.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/nat/TransportResolver.java @@ -37,7 +37,7 @@ import org.jivesoftware.smackx.jingleold.JingleSession; * It is called candidate, because it can be elected or not. * * @author Thiago Camargo - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class TransportResolver { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/Jingle.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/Jingle.java index 092dd5b00..99608cd22 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/Jingle.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/Jingle.java @@ -30,11 +30,11 @@ import org.jxmpp.jid.Jid; /** * An Jingle sub-packet, which is used by XMPP clients to exchange info like - * descriptions and transports. <p/> The following link summarizes the + * descriptions and transports. The following link summarizes the * requirements of Jingle IM: <a * href="http://www.xmpp.org/extensions/jep-0166.html">Valid tags</a>. - * <p/> - * <p/> Warning: this is an non-standard protocol documented by <a + * + * Warning: this is an non-standard protocol documented by <a * href="http://www.xmpp.org/extensions/jep-0166.html">XEP-166</a>. Because this is * a non-standard protocol, it is subject to change. * @@ -156,7 +156,7 @@ public class Jingle extends IQ { * Set the session ID related to this session. The session ID is a unique * identifier generated by the initiator. This should match the XML Nmtoken * production so that XML character escaping is not needed for characters - * such as &. + * such as &. * * @param sid the session ID */ @@ -168,7 +168,7 @@ public class Jingle extends IQ { * Returns the session ID related to the session. The session ID is a unique * identifier generated by the initiator. This should match the XML Nmtoken * production so that XML character escaping is not needed for characters - * such as &. + * such as &. * * @return Returns the session ID related to the session. * @see #setSid(String) diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentDescription.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentDescription.java index 6e5f163c2..7935cc87c 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentDescription.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentDescription.java @@ -28,7 +28,7 @@ import org.jivesoftware.smackx.jingleold.media.PayloadType; /** * Jingle content description. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class JingleContentDescription implements ExtensionElement { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentInfo.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentInfo.java index 9165c3805..4507a6175 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentInfo.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleContentInfo.java @@ -23,7 +23,7 @@ import org.jivesoftware.smackx.jingleold.media.ContentInfo; /** * Jingle content info. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public class JingleContentInfo implements ExtensionElement { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleDescription.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleDescription.java index 7745aafc3..1713cce6b 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleDescription.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleDescription.java @@ -29,7 +29,7 @@ import org.jivesoftware.smackx.jingleold.media.PayloadType; /** * Jingle content description. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class JingleDescription implements ExtensionElement { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleTransport.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleTransport.java index a523c5d6e..4f4807e9a 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleTransport.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/packet/JingleTransport.java @@ -29,7 +29,7 @@ import org.jivesoftware.smackx.jingleold.nat.TransportCandidate; /** * A jingle transport extension. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public class JingleTransport implements ExtensionElement { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentDescriptionProvider.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentDescriptionProvider.java index 12f6b3d44..3d5de9e70 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentDescriptionProvider.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentDescriptionProvider.java @@ -31,7 +31,7 @@ import org.xmlpull.v1.XmlPullParserException; /** * Parser for a Jingle description. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class JingleContentDescriptionProvider extends ExtensionElementProvider<JingleContentDescription> { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentProvider.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentProvider.java index dc8fe3857..c8f08e0ce 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentProvider.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleContentProvider.java @@ -23,7 +23,7 @@ import org.jivesoftware.smackx.jingleold.packet.JingleContent; import org.xmlpull.v1.XmlPullParser; /** - * Jingle <content> provider. + * Jingle <content> provider. * * @author Jeff Williams */ diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleDescriptionProvider.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleDescriptionProvider.java index a0265702d..b852014f2 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleDescriptionProvider.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleDescriptionProvider.java @@ -30,7 +30,7 @@ import org.xmlpull.v1.XmlPullParserException; /** * Parser for a Jingle description. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class JingleDescriptionProvider extends ExtensionElementProvider<JingleDescription> { diff --git a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleTransportProvider.java b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleTransportProvider.java index 22b5ac4f0..c67f7af79 100644 --- a/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleTransportProvider.java +++ b/smack-jingle-old/src/main/java/org/jivesoftware/smackx/jingleold/provider/JingleTransportProvider.java @@ -32,7 +32,7 @@ import org.xmlpull.v1.XmlPullParserException; /** * Provider for a Jingle transport element. * - * @author Alvaro Saurin <alvaro.saurin@gmail.com> + * @author Alvaro Saurin */ public abstract class JingleTransportProvider extends ExtensionElementProvider<JingleTransport> { diff --git a/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/agent/AgentSession.java b/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/agent/AgentSession.java index 6896d66d7..719e8e28c 100644 --- a/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/agent/AgentSession.java +++ b/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/agent/AgentSession.java @@ -363,14 +363,14 @@ public class AgentSession { * Sets the agent's current status with the workgroup. The presence mode affects * how offers are routed to the agent. The possible presence modes with their * meanings are as follows:<ul> - * <p/> + * * <li>Presence.Mode.AVAILABLE -- (Default) the agent is available for more chats * (equivalent to Presence.Mode.CHAT). * <li>Presence.Mode.DO_NOT_DISTURB -- the agent is busy and should not be disturbed. * However, special case, or extreme urgency chats may still be offered to the agent. * <li>Presence.Mode.AWAY -- the agent is not available and should not * have a chat routed to them (equivalent to Presence.Mode.EXTENDED_AWAY).</ul> - * <p/> + * * The max chats value is the maximum number of chats the agent is willing to have * routed to them at once. Some servers may be configured to only accept max chat * values in a certain range; for example, between two and five. In that case, the @@ -391,14 +391,14 @@ public class AgentSession { /** * Sets the agent's current status with the workgroup. The presence mode affects how offers * are routed to the agent. The possible presence modes with their meanings are as follows:<ul> - * <p/> + * * <li>Presence.Mode.AVAILABLE -- (Default) the agent is available for more chats * (equivalent to Presence.Mode.CHAT). * <li>Presence.Mode.DO_NOT_DISTURB -- the agent is busy and should not be disturbed. * However, special case, or extreme urgency chats may still be offered to the agent. * <li>Presence.Mode.AWAY -- the agent is not available and should not * have a chat routed to them (equivalent to Presence.Mode.EXTENDED_AWAY).</ul> - * <p/> + * * The max chats value is the maximum number of chats the agent is willing to have routed to * them at once. Some servers may be configured to only accept max chat values in a certain * range; for example, between two and five. In that case, the maxChats value the agent sends @@ -450,7 +450,7 @@ public class AgentSession { /** * Sets the agent's current status with the workgroup. The presence mode affects how offers * are routed to the agent. The possible presence modes with their meanings are as follows:<ul> - * <p/> + * * <li>Presence.Mode.AVAILABLE -- (Default) the agent is available for more chats * (equivalent to Presence.Mode.CHAT). * <li>Presence.Mode.DO_NOT_DISTURB -- the agent is busy and should not be disturbed. @@ -493,7 +493,7 @@ public class AgentSession { /** * Removes a user from the workgroup queue. This is an administrative action that the - * <p/> + * * The agent is not guaranteed of having privileges to perform this action; an exception * denying the request may be thrown. * diff --git a/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/user/Workgroup.java b/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/user/Workgroup.java index c4af93326..5ab295c5a 100644 --- a/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/user/Workgroup.java +++ b/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/user/Workgroup.java @@ -68,7 +68,7 @@ import org.jxmpp.jid.Jid; * Provides workgroup services for users. Users can join the workgroup queue, depart the * queue, find status information about their placement in the queue, and register to * be notified when they are routed to an agent.<p> - * <p/> + * * This class only provides a users perspective into a workgroup and is not intended * for use by agents. * @@ -232,20 +232,20 @@ public class Workgroup { * the queue, queue status events will be sent to indicate the user's position and * estimated time left in the queue. Once joining the queue, there are three ways * the user can leave the queue: <ul> - * <p/> + * * <li>The user is routed to an agent, which triggers a GroupChat invitation. * <li>The user asks to leave the queue by calling the {@link #departQueue} method. * <li>A server error occurs, or an administrator explicitly removes the user * from the queue. * </ul> - * <p/> + * * A user cannot request to join the queue again if already in the queue. Therefore, * this method will throw an IllegalStateException if the user is already in the queue.<p> - * <p/> + * * Some servers may be configured to require certain meta-data in order to * join the queue. In that case, the {@link #joinQueue(Form)} method should be * used instead of this method so that meta-data may be passed in.<p> - * <p/> + * * The server tracks the conversations that a user has with agents over time. By * default, that tracking is done using the user's JID. However, this is not always * possible. For example, when the user is logged in anonymously using a web client. @@ -271,19 +271,19 @@ public class Workgroup { * the queue, queue status events will be sent to indicate the user's position and * estimated time left in the queue. Once joining the queue, there are three ways * the user can leave the queue: <ul> - * <p/> + * * <li>The user is routed to an agent, which triggers a GroupChat invitation. * <li>The user asks to leave the queue by calling the {@link #departQueue} method. * <li>A server error occurs, or an administrator explicitly removes the user * from the queue. * </ul> - * <p/> + * * A user cannot request to join the queue again if already in the queue. Therefore, * this method will throw an IllegalStateException if the user is already in the queue.<p> - * <p/> + * * Some servers may be configured to require certain meta-data in order to * join the queue.<p> - * <p/> + * * The server tracks the conversations that a user has with agents over time. By * default, that tracking is done using the user's JID. However, this is not always * possible. For example, when the user is logged in anonymously using a web client. @@ -310,19 +310,19 @@ public class Workgroup { * the queue, queue status events will be sent to indicate the user's position and * estimated time left in the queue. Once joining the queue, there are three ways * the user can leave the queue: <ul> - * <p/> + * * <li>The user is routed to an agent, which triggers a GroupChat invitation. * <li>The user asks to leave the queue by calling the {@link #departQueue} method. * <li>A server error occurs, or an administrator explicitly removes the user * from the queue. * </ul> - * <p/> + * * A user cannot request to join the queue again if already in the queue. Therefore, * this method will throw an IllegalStateException if the user is already in the queue.<p> - * <p/> + * * Some servers may be configured to require certain meta-data in order to * join the queue.<p> - * <p/> + * * The server tracks the conversations that a user has with agents over time. By * default, that tracking is done using the user's JID. However, this is not always * possible. For example, when the user is logged in anonymously using a web client. @@ -359,19 +359,19 @@ public class Workgroup { * the queue, queue status events will be sent to indicate the user's position and * estimated time left in the queue. Once joining the queue, there are three ways * the user can leave the queue: <ul> - * <p/> + * * <li>The user is routed to an agent, which triggers a GroupChat invitation. * <li>The user asks to leave the queue by calling the {@link #departQueue} method. * <li>A server error occurs, or an administrator explicitly removes the user * from the queue. * </ul> - * <p/> + * * A user cannot request to join the queue again if already in the queue. Therefore, * this method will throw an IllegalStateException if the user is already in the queue.<p> - * <p/> + * * Some servers may be configured to require certain meta-data in order to * join the queue.<p> - * <p/> + * * The server tracks the conversations that a user has with agents over time. By * default, that tracking is done using the user's JID. However, this is not always * possible. For example, when the user is logged in anonymously using a web client. @@ -413,7 +413,7 @@ public class Workgroup { /** * Departs the workgroup queue. If the user is not currently in the queue, this * method will do nothing.<p> - * <p/> + * * Normally, the user would not manually leave the queue. However, they may wish to * under certain circumstances -- for example, if they no longer wish to be routed * to an agent because they've been waiting too long. diff --git a/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/util/MetaDataUtils.java b/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/util/MetaDataUtils.java index fc52e1856..514bf21e0 100644 --- a/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/util/MetaDataUtils.java +++ b/smack-legacy/src/main/java/org/jivesoftware/smackx/workgroup/util/MetaDataUtils.java @@ -84,7 +84,7 @@ public class MetaDataUtils { /** * Serializes a Map of String name/value pairs into the meta-data XML format. * - * @param metaData the Map of meta-data as Map<String,List<String>> + * @param metaData the Map of meta-data as Map<String,List<String>> * @return the meta-data values in XML form. */ public static String serializeMetaData(Map<String, List<String>> metaData) { diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java index 038ec6e1b..76f197676 100644 --- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java +++ b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java @@ -1670,8 +1670,8 @@ public class XMPPTCPConnection extends AbstractXMPPConnection { * Send a unconditional Stream Management acknowledgment to the server. * <p> * See <a href="http://xmpp.org/extensions/xep-0198.html#acking">XEP-198: Stream Management § 4. Acks</a>: - * "Either party MAY send an <a/> element at any time (e.g., after it has received a certain number of stanzas, - * or after a certain period of time), even if it has not received an <r/> element from the other party." + * "Either party MAY send an <a/> element at any time (e.g., after it has received a certain number of stanzas, + * or after a certain period of time), even if it has not received an <r/> element from the other party." * </p> * * @throws StreamManagementNotEnabledException if Stream Management is not enabled.

    XMPP Errors
    XMPP Error ConditionTypeRFC 6120 Section
    XMPP Error ConditionTypeRFC 6120 Section
    bad-requestMODIFY8.3.3.1
    conflictCANCEL8.3.3.2
    feature-not-implementedCANCEL8.3.3.3