Skip to content

Commit 5c2a35f

Browse files
committed
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
1 parent 8802d6b commit 5c2a35f

19 files changed

Lines changed: 28 additions & 28 deletions

File tree

smack-extensions/src/main/java/org/jivesoftware/smackx/address/MultipleRecipientManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
/**
4848
* A MultipleRecipientManager allows to send packets to multiple recipients by making use of
49-
* <a href="http://www.xmpp.org/extensions/jep-0033.html">XEP-33: Extended Stanza Addressing</a>.
49+
* <a href="https://xmpp.org/extensions/xep-0033.html">XEP-33: Extended Stanza Addressing</a>.
5050
* It also allows to send replies to packets that were sent to multiple recipients.
5151
*
5252
* @author Gaston Dombiak

smack-extensions/src/main/java/org/jivesoftware/smackx/caps/EntityCapsManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
* }</pre>
116116
*
117117
* @author Florian Schmaus
118-
* @see <a href="http://www.xmpp.org/extensions/xep-0115.html">XEP-0115: Entity Capabilities</a>
118+
* @see <a href="https://xmpp.org/extensions/xep-0115.html">XEP-0115: Entity Capabilities</a>
119119
*/
120120
public final class EntityCapsManager extends Manager {
121121

smack-extensions/src/main/java/org/jivesoftware/smackx/chatstates/ChatState.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/**
2121
* Represents the current state of a users interaction with another user. Implemented according to
22-
* <a href="http://www.xmpp.org/extensions/xep-0085.html">XEP-0085</a>.
22+
* <a href="https://xmpp.org/extensions/xep-0085.html">XEP-0085</a>.
2323
*
2424
* @author Alexander Wenckus
2525
*/

smack-extensions/src/main/java/org/jivesoftware/smackx/chatstates/ChatStateManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
/**
5555
* Handles chat state for all chats on a particular XMPPConnection. This class manages both the
5656
* stanza extensions and the disco response necessary for compliance with
57-
* <a href="http://www.xmpp.org/extensions/xep-0085.html">XEP-0085</a>.
57+
* <a href="https://xmpp.org/extensions/xep-0085.html">XEP-0085</a>.
5858
*
5959
* NOTE: {@link org.jivesoftware.smackx.chatstates.ChatStateManager#getInstance(org.jivesoftware.smack.XMPPConnection)}
6060
* needs to be called in order for the listeners to be registered appropriately with the connection.

smack-extensions/src/main/java/org/jivesoftware/smackx/chatstates/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*/
1717

1818
/**
19-
* Classes for Chat States (<a href="http://www.xmpp.org/extensions/xep-0085.html">XEP-0085</a>).
19+
* Classes for Chat States (<a href="https://xmpp.org/extensions/xep-0085.html">XEP-0085</a>).
2020
*/
2121
package org.jivesoftware.smackx.chatstates;

smack-extensions/src/main/java/org/jivesoftware/smackx/filetransfer/FileTransferNegotiator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,9 @@ public static String getNextStreamID() {
273273
* If they accept, the stanza will contain the other user's chosen stream
274274
* type to send the file across. The two choices this implementation
275275
* provides to the other user for file transfer are <a
276-
* href="http://www.xmpp.org/extensions/jep-0065.html">SOCKS5 Bytestreams</a>,
276+
* href="https://xmpp.org/extensions/xep-0065.html">SOCKS5 Bytestreams</a>,
277277
* which is the preferred method of transfer, and <a
278-
* href="http://www.xmpp.org/extensions/jep-0047.html">In-Band Bytestreams</a>,
278+
* href="https://xmpp.org/extensions/xep-0047.html">In-Band Bytestreams</a>,
279279
* which is the fallback mechanism.
280280
* </p>
281281
* <p>

smack-extensions/src/main/java/org/jivesoftware/smackx/geoloc/packet/GeoLocation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* A GeoLocation Extension packet, which is used by the XMPP clients to exchange their respective geographic locations.
3636
*
37-
* @see <a href="http://www.xmpp.org/extensions/xep-0080.html">XEP-0080</a>
37+
* @see <a href="https://xmpp.org/extensions/xep-0080.html">XEP-0080</a>
3838
* @author Ishan Khanna
3939
*/
4040
public final class GeoLocation implements Serializable, ExtensionElement, FormFieldChildElement {

smack-extensions/src/main/java/org/jivesoftware/smackx/iqprivate/PrivateDataManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
* a {@link DefaultPrivateData} instance will be returned.<p>
6363
*
6464
* Warning: this is an non-standard protocol documented by
65-
* <a href="http://www.xmpp.org/extensions/jep-0049.html">XEP-49</a>. Because this is a
65+
* <a href="https://xmpp.org/extensions/xep-0049.html">XEP-49</a>. Because this is a
6666
* non-standard protocol, it is subject to change.
6767
*
6868
* @author Matt Tucker

smack-extensions/src/main/java/org/jivesoftware/smackx/muc/MultiUserChat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ public class MucCreateConfigFormHandle {
580580
* @throws XMPPErrorException if there was an XMPP error returned.
581581
* @throws NotConnectedException if the XMPP connection is not connected.
582582
* @throws InterruptedException if the calling thread was interrupted.
583-
* @see <a href="http://www.xmpp.org/extensions/xep-0045.html#createroom-instant">XEP-45 § 10.1.2 Creating an
583+
* @see <a href="https://xmpp.org/extensions/xep-0045.html#createroom-instant">XEP-45 § 10.1.2 Creating an
584584
* Instant Room</a>
585585
*/
586586
public void makeInstant() throws NoResponseException, XMPPErrorException, NotConnectedException,

smack-extensions/src/main/java/org/jivesoftware/smackx/ping/PingManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
* </p>
5959
*
6060
* @author Florian Schmaus
61-
* @see <a href="http://www.xmpp.org/extensions/xep-0199.html">XEP-0199:XMPP Ping</a>
61+
* @see <a href="https://xmpp.org/extensions/xep-0199.html">XEP-0199:XMPP Ping</a>
6262
*/
6363
public final class PingManager extends Manager {
6464
private static final Logger LOGGER = Logger.getLogger(PingManager.class.getName());

0 commit comments

Comments
 (0)