1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +02:00

Globally 's;stanza(/packet);stanza;'

This commit is contained in:
Florian Schmaus 2018-03-31 14:17:30 +02:00
parent 1d12be1644
commit ad87243060
171 changed files with 911 additions and 599 deletions

View file

@ -73,11 +73,11 @@ public class MultipleRecipientInfo {
}
/**
* Returns true if the received stanza(/packet) should not be replied. Use
* Returns true if the received stanza should not be replied. Use
* {@link MultipleRecipientManager#reply(org.jivesoftware.smack.XMPPConnection, org.jivesoftware.smack.packet.Message, org.jivesoftware.smack.packet.Message)}
* to send replies.
*
* @return true if the received stanza(/packet) should not be replied.
* @return true if the received stanza should not be replied.
*/
public boolean shouldNotReply() {
return !extension.getAddressesOfType(MultipleAddresses.Type.noreply).isEmpty();

View file

@ -49,14 +49,14 @@ import org.jxmpp.jid.Jid;
public class MultipleRecipientManager {
/**
* Sends the specified stanza(/packet) to the collection of specified recipients using the
* Sends the specified stanza to the collection of specified recipients using the
* specified connection. If the server has support for XEP-33 then only one
* stanza(/packet) is going to be sent to the server with the multiple recipient instructions.
* stanza is going to be sent to the server with the multiple recipient instructions.
* However, if XEP-33 is not supported by the server then the client is going to send
* the stanza(/packet) to each recipient.
* the stanza to each recipient.
*
* @param connection the connection to use to send the packet.
* @param packet the stanza(/packet) to send to the list of recipients.
* @param packet the stanza to send to the list of recipients.
* @param to the collection of JIDs to include in the TO list or <tt>null</tt> if no TO
* list exists.
* @param cc the collection of JIDs to include in the CC list or <tt>null</tt> if no CC
@ -77,13 +77,13 @@ public class MultipleRecipientManager {
}
/**
* Sends the specified stanza(/packet) to the collection of specified recipients using the specified
* connection. If the server has support for XEP-33 then only one stanza(/packet) is going to be sent to
* Sends the specified stanza to the collection of specified recipients using the specified
* connection. If the server has support for XEP-33 then only one stanza is going to be sent to
* the server with the multiple recipient instructions. However, if XEP-33 is not supported by
* the server then the client is going to send the stanza(/packet) to each recipient.
* the server then the client is going to send the stanza to each recipient.
*
* @param connection the connection to use to send the packet.
* @param packet the stanza(/packet) to send to the list of recipients.
* @param packet the stanza to send to the list of recipients.
* @param to the collection of JIDs to include in the TO list or <tt>null</tt> if no TO list exists.
* @param cc the collection of JIDs to include in the CC list or <tt>null</tt> if no CC list exists.
* @param bcc the collection of JIDs to include in the BCC list or <tt>null</tt> if no BCC list
@ -132,12 +132,12 @@ public class MultipleRecipientManager {
}
/**
* Sends a reply to a previously received stanza(/packet) that was sent to multiple recipients. Before
* Sends a reply to a previously received stanza that was sent to multiple recipients. Before
* attempting to send the reply message some checks are performed. If any of those checks
* fails, then an XMPPException is going to be thrown with the specific error detail.
*
* @param connection the connection to use to send the reply.
* @param original the previously received stanza(/packet) that was sent to multiple recipients.
* @param original the previously received stanza that was sent to multiple recipients.
* @param reply the new message to send as a reply.
* @throws SmackException
* @throws XMPPErrorException
@ -192,12 +192,12 @@ public class MultipleRecipientManager {
}
/**
* Returns the {@link MultipleRecipientInfo} contained in the specified stanza(/packet) or
* Returns the {@link MultipleRecipientInfo} contained in the specified stanza or
* <tt>null</tt> if none was found. Only packets sent to multiple recipients will
* contain such information.
*
* @param packet the stanza(/packet) to check.
* @return the MultipleRecipientInfo contained in the specified stanza(/packet) or <tt>null</tt>
* @param packet the stanza to check.
* @return the MultipleRecipientInfo contained in the specified stanza or <tt>null</tt>
* if none was found.
*/
public static MultipleRecipientInfo getMultipleRecipientInfo(Stanza packet) {
@ -289,8 +289,8 @@ public class MultipleRecipientManager {
/**
* Stanza(/Packet) that holds the XML stanza to send. This class is useful when the same packet
* is needed to be sent to different recipients. Since using the same stanza(/packet) is not possible
* (i.e. cannot change the TO address of a queues stanza(/packet) to be sent) then this class was
* is needed to be sent to different recipients. Since using the same stanza is not possible
* (i.e. cannot change the TO address of a queues stanza to be sent) then this class was
* created to keep the XML stanza to send.
*/
private static final class PacketCopy extends Stanza {
@ -298,10 +298,10 @@ public class MultipleRecipientManager {
private final CharSequence text;
/**
* Create a copy of a stanza(/packet) with the text to send. The passed text must be a valid text to
* Create a copy of a stanza with the text to send. The passed text must be a valid text to
* send to the server, no validation will be done on the passed text.
*
* @param text the whole text of the stanza(/packet) to send
* @param text the whole text of the stanza to send
*/
private PacketCopy(CharSequence text) {
this.text = text;

View file

@ -27,7 +27,7 @@ import org.jivesoftware.smack.util.XmlStringBuilder;
import org.jxmpp.jid.Jid;
/**
* Stanza(/Packet) extension that contains the list of addresses that a stanza(/packet) should be sent or was sent.
* Stanza(/Packet) extension that contains the list of addresses that a stanza should be sent or was sent.
*
* @author Gaston Dombiak
*/
@ -56,14 +56,14 @@ public class MultipleAddresses implements ExtensionElement {
private final List<Address> addresses = new ArrayList<>();
/**
* Adds a new address to which the stanza(/packet) is going to be sent or was sent.
* Adds a new address to which the stanza is going to be sent or was sent.
*
* @param type on of the static type (BCC, CC, NO_REPLY, REPLY_ROOM, etc.)
* @param jid the JID address of the recipient.
* @param node used to specify a sub-addressable unit at a particular JID, corresponding to
* a Service Discovery node.
* @param desc used to specify human-readable information for this address.
* @param delivered true when the stanza(/packet) was already delivered to this address.
* @param delivered true when the stanza was already delivered to this address.
* @param uri used to specify an external system address, such as a sip:, sips:, or im: URI.
*/
public void addAddress(Type type, Jid jid, String node, String desc, boolean delivered,
@ -80,7 +80,7 @@ public class MultipleAddresses implements ExtensionElement {
}
/**
* Indicate that the stanza(/packet) being sent should not be replied.
* Indicate that the stanza being sent should not be replied.
*/
public void setNoReply() {
// Create a new address with the specified configuration

View file

@ -132,7 +132,7 @@ public class AMPExtension implements ExtensionElement {
* Returns the XML element name of the extension sub-packet root element.
* Always returns "amp"
*
* @return the XML element name of the stanza(/packet) extension.
* @return the XML element name of the stanza extension.
*/
@Override
public String getElementName() {
@ -143,7 +143,7 @@ public class AMPExtension implements ExtensionElement {
* Returns the XML namespace of the extension sub-packet root element.
* According the specification the namespace is always "http://jabber.org/protocol/xhtml-im"
*
* @return the XML namespace of the stanza(/packet) extension.
* @return the XML namespace of the stanza extension.
*/
@Override
public String getNamespace() {

View file

@ -34,7 +34,7 @@ public class AMPExtensionProvider extends ExtensionElementProvider<AMPExtension>
private static final Logger LOGGER = Logger.getLogger(AMPExtensionProvider.class.getName());
/**
* Parses a AMPExtension stanza(/packet) (extension sub-packet).
* Parses a AMPExtension stanza (extension sub-packet).
*
* @param parser the XML parser, positioned at the starting element of the extension.
* @return a PacketExtension.

View file

@ -26,9 +26,9 @@ import org.jivesoftware.smackx.bytestreams.ibb.packet.DataPacketExtension;
/**
* DataListener handles all In-Band Bytestream IQ stanzas containing a data
* stanza(/packet) extension that don't belong to an existing session.
* stanza extension that don't belong to an existing session.
* <p>
* If a data stanza(/packet) is received it looks if a stored In-Band Bytestream session
* If a data stanza is received it looks if a stored In-Band Bytestream session
* exists. If no session with the given session ID exists an
* &lt;item-not-found/&gt; error is returned to the sender.
* <p>

View file

@ -53,7 +53,7 @@ import org.jxmpp.jid.Jid;
* in case the Socks5 bytestream method of transferring data is not available.
* <p>
* There are two ways to send data over an In-Band Bytestream. It could either use IQ stanzas to
* send data packets or message stanzas. If IQ stanzas are used every data stanza(/packet) is acknowledged by
* send data packets or message stanzas. If IQ stanzas are used every data stanza is acknowledged by
* the receiver. This is the recommended way to avoid possible rate-limiting penalties. Message
* stanzas are not acknowledged because most XMPP server implementation don't support stanza
* flow-control method like <a href="http://xmpp.org/extensions/xep-0079.html">Advanced Message
@ -291,7 +291,7 @@ public final class InBandBytestreamManager extends Manager implements Bytestream
* to the initiator.
* <p>
* This method should be used if you are awaiting an In-Band Bytestream request as a reply to
* another stanza(/packet) (e.g. file transfer).
* another stanza (e.g. file transfer).
*
* @param sessionID to be ignored
*/
@ -447,7 +447,7 @@ public final class InBandBytestreamManager extends Manager implements Bytestream
* Responses to the given IQ packet's sender with an XMPP error that an In-Band Bytestream is
* not accepted.
*
* @param request IQ stanza(/packet) that should be answered with a not-acceptable error
* @param request IQ stanza that should be answered with a not-acceptable error
* @throws NotConnectedException
* @throws InterruptedException
*/
@ -460,7 +460,7 @@ public final class InBandBytestreamManager extends Manager implements Bytestream
* Responses to the given IQ packet's sender with an XMPP error that an In-Band Bytestream open
* request is rejected because its block size is greater than the maximum allowed block size.
*
* @param request IQ stanza(/packet) that should be answered with a resource-constraint error
* @param request IQ stanza that should be answered with a resource-constraint error
* @throws NotConnectedException
* @throws InterruptedException
*/
@ -473,7 +473,7 @@ public final class InBandBytestreamManager extends Manager implements Bytestream
* Responses to the given IQ packet's sender with an XMPP error that an In-Band Bytestream
* session could not be found.
*
* @param request IQ stanza(/packet) that should be answered with a item-not-found error
* @param request IQ stanza that should be answered with a item-not-found error
* @throws NotConnectedException
* @throws InterruptedException
*/
@ -543,7 +543,7 @@ public final class InBandBytestreamManager extends Manager implements Bytestream
}
/**
* Disables the InBandBytestreamManager by removing its stanza(/packet) listeners and resetting its
* Disables the InBandBytestreamManager by removing its stanza listeners and resetting its
* internal status, which includes removing this instance from the managers map.
*/
private void disableService() {

View file

@ -242,7 +242,7 @@ public class InBandBytestreamSession implements BytestreamSession {
/**
* IBBInputStream class is the base implementation of an In-Band Bytestream input stream.
* Subclasses of this input stream must provide a stanza(/packet) listener along with a stanza(/packet) filter to
* Subclasses of this input stream must provide a stanza listener along with a stanza filter to
* collect the In-Band Bytestream data packets.
*/
private abstract class IBBInputStream extends InputStream {
@ -281,16 +281,16 @@ public class InBandBytestreamSession implements BytestreamSession {
}
/**
* Returns the stanza(/packet) listener that processes In-Band Bytestream data packets.
* Returns the stanza listener that processes In-Band Bytestream data packets.
*
* @return the data stanza(/packet) listener
* @return the data stanza listener
*/
protected abstract StanzaListener getDataPacketListener();
/**
* Returns the stanza(/packet) filter that accepts In-Band Bytestream data packets.
* Returns the stanza filter that accepts In-Band Bytestream data packets.
*
* @return the data stanza(/packet) filter
* @return the data stanza filter
*/
protected abstract StanzaFilter getDataPacketFilter();
@ -350,7 +350,7 @@ public class InBandBytestreamSession implements BytestreamSession {
}
/**
* This method blocks until a data stanza(/packet) is received, the stream is closed or the current
* This method blocks until a data stanza is received, the stream is closed or the current
* thread is interrupted.
*
* @return <code>true</code> if data was received, otherwise <code>false</code>
@ -436,7 +436,7 @@ public class InBandBytestreamSession implements BytestreamSession {
}
/**
* This method sets the close flag and removes the data stanza(/packet) listener.
* This method sets the close flag and removes the data stanza listener.
*/
private void closeInternal() {
if (isClosed) {
@ -513,7 +513,7 @@ public class InBandBytestreamSession implements BytestreamSession {
protected StanzaFilter getDataPacketFilter() {
/*
* filter all IQ stanzas having type 'SET' (represented by Data class), containing a
* data stanza(/packet) extension, matching session ID and recipient
* data stanza extension, matching session ID and recipient
*/
return new AndFilter(new StanzaTypeFilter(Data.class), new IBBDataPacketFilter());
}
@ -561,7 +561,7 @@ public class InBandBytestreamSession implements BytestreamSession {
@Override
protected StanzaFilter getDataPacketFilter() {
/*
* filter all message stanzas containing a data stanza(/packet) extension, matching session ID
* filter all message stanzas containing a data stanza extension, matching session ID
* and recipient
*/
return new AndFilter(new StanzaTypeFilter(Message.class), new IBBDataPacketFilter());
@ -571,7 +571,7 @@ public class InBandBytestreamSession implements BytestreamSession {
/**
* IBBDataPacketFilter class filters all packets from the remote peer of this session,
* containing an In-Band Bytestream data stanza(/packet) extension whose session ID matches this sessions
* containing an In-Band Bytestream data stanza extension whose session ID matches this sessions
* ID.
*/
private class IBBDataPacketFilter implements StanzaFilter {
@ -632,7 +632,7 @@ public class InBandBytestreamSession implements BytestreamSession {
}
/**
* Writes the given data stanza(/packet) to the XMPP stream.
* Writes the given data stanza to the XMPP stream.
*
* @param data the data packet
* @throws IOException if an I/O error occurred while sending or if the stream is closed

View file

@ -32,7 +32,7 @@ public class Data extends IQ {
/**
* Constructor.
*
* @param data data stanza(/packet) extension containing the encoded data
* @param data data stanza extension containing the encoded data
*/
public Data(DataPacketExtension data) {
super(DataPacketExtension.ELEMENT, DataPacketExtension.NAMESPACE);
@ -45,9 +45,9 @@ public class Data extends IQ {
}
/**
* Returns the data stanza(/packet) extension.
* Returns the data stanza extension.
*
* @return the data stanza(/packet) extension
* @return the data stanza extension
*/
public DataPacketExtension getDataPacketExtension() {
return this.dataPacketExtension;

View file

@ -30,7 +30,7 @@ import org.jivesoftware.smack.util.stringencoder.Base64;
public class DataPacketExtension implements ExtensionElement {
/**
* The element name of the data stanza(/packet) extension.
* The element name of the data stanza extension.
*/
public static final String ELEMENT = "data";
@ -54,7 +54,7 @@ public class DataPacketExtension implements ExtensionElement {
* Creates a new In-Band Bytestream data packet.
*
* @param sessionID unique session ID identifying this In-Band Bytestream
* @param seq sequence of this stanza(/packet) in regard to the other data packets
* @param seq sequence of this stanza in regard to the other data packets
* @param data the base64 encoded data contained in this packet
*/
public DataPacketExtension(String sessionID, long seq, String data) {
@ -82,9 +82,9 @@ public class DataPacketExtension implements ExtensionElement {
}
/**
* Returns the sequence of this stanza(/packet) in regard to the other data packets.
* Returns the sequence of this stanza in regard to the other data packets.
*
* @return the sequence of this stanza(/packet) in regard to the other data packets.
* @return the sequence of this stanza in regard to the other data packets.
*/
public long getSeq() {
return seq;

View file

@ -25,7 +25,7 @@ import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
/**
* Parses an In-Band Bytestream data stanza(/packet) which can be a stanza(/packet) extension of
* Parses an In-Band Bytestream data stanza which can be a stanza extension of
* either an IQ stanza or a message stanza.
*
* @author Henning Staib

View file

@ -256,7 +256,7 @@ public final class Socks5BytestreamManager extends Manager implements Bytestream
* to the initiator.
* <p>
* This method should be used if you are awaiting a SOCKS5 Bytestream request as a reply to
* another stanza(/packet) (e.g. file transfer).
* another stanza (e.g. file transfer).
*
* @param sessionID to be ignored
*/
@ -612,10 +612,10 @@ public final class Socks5BytestreamManager extends Manager implements Bytestream
}
/**
* Returns a IQ stanza(/packet) to query a SOCKS5 proxy its network settings.
* Returns a IQ stanza to query a SOCKS5 proxy its network settings.
*
* @param proxy the proxy to query
* @return IQ stanza(/packet) to query a SOCKS5 proxy its network settings
* @return IQ stanza to query a SOCKS5 proxy its network settings
*/
private static Bytestream createStreamHostRequest(Jid proxy) {
Bytestream request = new Bytestream();
@ -664,7 +664,7 @@ public final class Socks5BytestreamManager extends Manager implements Bytestream
}
/**
* Returns a SOCKS5 Bytestream initialization request stanza(/packet) with the given session ID
* Returns a SOCKS5 Bytestream initialization request stanza with the given session ID
* containing the given stream hosts for the given target JID.
*
* @param sessionID the session ID for the SOCKS5 Bytestream

View file

@ -105,7 +105,7 @@ public class Socks5ClientForInitiator extends Socks5Client {
}
/**
* Activates the SOCKS5 Bytestream by sending an XMPP SOCKS5 Bytestream activation stanza(/packet) to the
* Activates the SOCKS5 Bytestream by sending an XMPP SOCKS5 Bytestream activation stanza to the
* SOCKS5 proxy.
* @throws XMPPErrorException
* @throws NoResponseException

View file

@ -29,7 +29,7 @@ import org.jivesoftware.smack.util.XmlStringBuilder;
import org.jxmpp.jid.Jid;
/**
* A stanza(/packet) representing part of a SOCKS5 Bytestream negotiation.
* A stanza representing part of a SOCKS5 Bytestream negotiation.
*
* @author Alexander Wenckus
*/
@ -202,10 +202,10 @@ public class Bytestream extends IQ {
}
/**
* Returns the activate element of the stanza(/packet) sent to the proxy host to verify the identity of
* Returns the activate element of the stanza sent to the proxy host to verify the identity of
* the initiator and match them to the appropriate stream.
*
* @return Returns the activate element of the stanza(/packet) sent to the proxy host to verify the
* @return Returns the activate element of the stanza sent to the proxy host to verify the
* identity of the initiator and match them to the appropriate stream.
*/
public Activate getToActivate() {
@ -213,7 +213,7 @@ public class Bytestream extends IQ {
}
/**
* Upon the response from the target of the used host the activate stanza(/packet) is sent to the SOCKS5
* Upon the response from the target of the used host the activate stanza is sent to the SOCKS5
* proxy. The proxy will activate the stream or return an error after verifying the identity of
* the initiator, using the activate packet.
*
@ -341,7 +341,7 @@ public class Bytestream extends IQ {
/**
* After selected a SOCKS5 stream host and successfully connecting, the target of the file
* transfer returns a byte stream stanza(/packet) with the stream host used extension.
* transfer returns a byte stream stanza with the stream host used extension.
*
* @author Alexander Wenckus
*/
@ -384,7 +384,7 @@ public class Bytestream extends IQ {
}
/**
* The stanza(/packet) sent by the stream initiator to the stream proxy to activate the connection.
* The stanza sent by the stream initiator to the stream proxy to activate the connection.
*
* @author Alexander Wenckus
*/

View file

@ -564,7 +564,7 @@ public final class EntityCapsManager extends Manager {
/**
*
* @param info
* @return true if the stanza(/packet) extensions is ill-formed
* @return true if the stanza extensions is ill-formed
*/
protected static boolean verifyPacketExtensions(DiscoverInfo info) {
List<FormField> foundFormTypes = new LinkedList<>();

View file

@ -123,7 +123,7 @@ public class SimpleDirectoryPersistentCache implements EntityCapsPersistentCache
}
/**
* Writes the DiscoverInfo stanza(/packet) to an file
* Writes the DiscoverInfo stanza to an file
*
* @param file
* @param info
@ -139,7 +139,7 @@ public class SimpleDirectoryPersistentCache implements EntityCapsPersistentCache
}
/**
* Tries to restore an DiscoverInfo stanza(/packet) from a file.
* Tries to restore an DiscoverInfo stanza from a file.
*
* @param file
* @return the restored DiscoverInfo

View file

@ -46,7 +46,7 @@ import org.jxmpp.jid.EntityFullJid;
/**
* Handles chat state for all chats on a particular XMPPConnection. This class manages both the
* stanza(/packet) extensions and the disco response necessary for compliance with
* stanza extensions and the disco response necessary for compliance with
* <a href="http://www.xmpp.org/extensions/xep-0085.html">XEP-0085</a>.
*
* NOTE: {@link org.jivesoftware.smackx.chatstates.ChatStateManager#getInstance(org.jivesoftware.smack.XMPPConnection)}
@ -178,7 +178,7 @@ public final class ChatStateManager extends Manager {
/**
* Sets the current state of the provided chat. This method will send an empty bodied Message
* stanza(/packet) with the state attached as a {@link org.jivesoftware.smack.packet.ExtensionElement}, if
* stanza with the state attached as a {@link org.jivesoftware.smack.packet.ExtensionElement}, if
* and only if the new chat state is different than the last state.
*
* @param newState the new state of the chat

View file

@ -306,7 +306,7 @@ public final class AdHocCommandManager extends Manager {
}
/**
* Process the AdHoc-Command stanza(/packet) that request the execution of some
* Process the AdHoc-Command stanza that request the execution of some
* action of a command. If this is the first request, this method checks,
* before executing the command, if:
* <ul>
@ -327,7 +327,7 @@ public final class AdHocCommandManager extends Manager {
* </ul>
*
* @param requestData
* the stanza(/packet) to process.
* the stanza to process.
* @throws NotConnectedException
* @throws NoResponseException
* @throws InterruptedException

View file

@ -26,8 +26,8 @@ import org.jxmpp.util.XmppDateTime;
/**
* Represents timestamp information about data stored for later delivery. A DelayInformation will
* always includes the timestamp when the stanza(/packet) was originally sent and may include more
* information such as the JID of the entity that originally sent the stanza(/packet) as well as the reason
* always includes the timestamp when the stanza was originally sent and may include more
* information such as the JID of the entity that originally sent the stanza as well as the reason
* for the delay.<p>
*
* For more information see <a href="http://xmpp.org/extensions/xep-0091.html">XEP-0091</a>
@ -61,10 +61,10 @@ public class DelayInformation implements ExtensionElement {
}
/**
* Returns the JID of the entity that originally sent the stanza(/packet) or that delayed the
* delivery of the stanza(/packet) or <tt>null</tt> if this information is not available.
* Returns the JID of the entity that originally sent the stanza or that delayed the
* delivery of the stanza or <tt>null</tt> if this information is not available.
*
* @return the JID of the entity that originally sent the stanza(/packet) or that delayed the
* @return the JID of the entity that originally sent the stanza or that delayed the
* delivery of the packet.
*/
public String getFrom() {
@ -72,10 +72,10 @@ public class DelayInformation implements ExtensionElement {
}
/**
* Returns the timestamp when the stanza(/packet) was originally sent. The returned Date is
* Returns the timestamp when the stanza was originally sent. The returned Date is
* be understood as UTC.
*
* @return the timestamp when the stanza(/packet) was originally sent.
* @return the timestamp when the stanza was originally sent.
*/
public Date getStamp() {
return stamp;

View file

@ -65,9 +65,9 @@ public interface NodeInformationProvider {
List<DiscoverInfo.Identity> getNodeIdentities();
/**
* Returns a list of the stanza(/packet) extensions defined in the node.
* Returns a list of the stanza extensions defined in the node.
*
* @return a list of the stanza(/packet) extensions defined in the node.
* @return a list of the stanza extensions defined in the node.
*/
List<ExtensionElement> getNodePacketExtensions();
}

View file

@ -373,7 +373,7 @@ public final class ServiceDiscoveryManager extends Manager {
* Registers that a new feature is supported by this XMPP entity. When this client is
* queried for its information the registered features will be answered.<p>
*
* Since no stanza(/packet) is actually sent to the server it is safe to perform this operation
* Since no stanza is actually sent to the server it is safe to perform this operation
* before logging to the server. In fact, you may want to configure the supported features
* before logging to the server so that the information is already available if it is required
* upon login.
@ -390,7 +390,7 @@ public final class ServiceDiscoveryManager extends Manager {
/**
* Removes the specified feature from the supported features by this XMPP entity.<p>
*
* Since no stanza(/packet) is actually sent to the server it is safe to perform this operation
* Since no stanza is actually sent to the server it is safe to perform this operation
* before logging to the server.
*
* @param feature the feature to remove from the supported features.
@ -418,7 +418,7 @@ public final class ServiceDiscoveryManager extends Manager {
* specified by XEP-0128.
* <p>
*
* Since no stanza(/packet) is actually sent to the server it is safe to perform this
* Since no stanza is actually sent to the server it is safe to perform this
* operation before logging to the server. In fact, you may want to
* configure the extended info before logging to the server so that the
* information is already available if it is required upon login.
@ -463,7 +463,7 @@ public final class ServiceDiscoveryManager extends Manager {
* Removes the data form containing extended service discovery information
* from the information returned by this XMPP entity.<p>
*
* Since no stanza(/packet) is actually sent to the server it is safe to perform this
* Since no stanza is actually sent to the server it is safe to perform this
* operation before logging to the server.
*/
public synchronized void removeExtendedInfo() {
@ -607,7 +607,7 @@ public final class ServiceDiscoveryManager extends Manager {
* be returned by the server whenever the server receives a disco request targeted to the bare
* address of the client (i.e. user@host.com).
*
* @param info the discover info stanza(/packet) to check.
* @param info the discover info stanza to check.
* @return true if the server supports publishing of items.
* @deprecated The disco-publish feature was removed from XEP-0030 in 2008 in favor of XEP-0060: Publish-Subscribe.
*/

View file

@ -270,7 +270,7 @@ public final class FileTransferNegotiator extends Manager {
* the option of, accepting, rejecting, or not responding to a received file
* transfer request.
* <p>
* If they accept, the stanza(/packet) will contain the other user's chosen stream
* If they accept, the stanza 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 <a
* href="http://www.xmpp.org/extensions/jep-0065.html">SOCKS5 Bytestreams</a>,

View file

@ -106,11 +106,11 @@ public class FileTransferRequest {
}
/**
* Returns the stream initiation stanza(/packet) that was sent by the requester which
* Returns the stream initiation stanza that was sent by the requester which
* contains the parameters of the file transfer being transfer and also the
* methods available to transfer the file.
*
* @return Returns the stream initiation stanza(/packet) that was sent by the
* @return Returns the stream initiation stanza that was sent by the
* requester which contains the parameters of the file transfer
* being transfer and also the methods available to transfer the
* file.

View file

@ -65,7 +65,7 @@ public abstract class StreamNegotiator extends Manager {
protected static final EventManger<String, IQ, SmackException.NotConnectedException> initationSetEvents = new EventManger<>();
/**
* Creates the initiation acceptance stanza(/packet) to forward to the stream
* Creates the initiation acceptance stanza to forward to the stream
* initiator.
*
* @param streamInitiationOffer The offer from the stream initiator to connect for a stream.

View file

@ -36,10 +36,10 @@ public class Forwarded implements ExtensionElement {
private final Stanza forwardedPacket;
/**
* Creates a new Forwarded stanza(/packet) extension.
* Creates a new Forwarded stanza extension.
*
* @param delay an optional {@link DelayInformation} timestamp of the packet.
* @param fwdPacket the stanza(/packet) that is forwarded (required).
* @param fwdPacket the stanza that is forwarded (required).
*/
public Forwarded(DelayInformation delay, Stanza fwdPacket) {
this.delay = delay;
@ -47,9 +47,9 @@ public class Forwarded implements ExtensionElement {
}
/**
* Creates a new Forwarded stanza(/packet) extension.
* Creates a new Forwarded stanza extension.
*
* @param fwdPacket the stanza(/packet) that is forwarded (required).
* @param fwdPacket the stanza that is forwarded (required).
*/
public Forwarded(Stanza fwdPacket) {
this(null, fwdPacket);
@ -76,7 +76,7 @@ public class Forwarded implements ExtensionElement {
}
/**
* get the stanza(/packet) forwarded by this stanza.
* get the stanza forwarded by this stanza.
*
* @return the {@link Stanza} instance (typically a message) that was forwarded.
* @deprecated use @{link {@link #getForwardedStanza()}} instead.
@ -98,7 +98,7 @@ public class Forwarded implements ExtensionElement {
/**
* get the timestamp of the forwarded packet.
*
* @return the {@link DelayInformation} representing the time when the original stanza(/packet) was sent. May be null.
* @return the {@link DelayInformation} representing the time when the original stanza was sent. May be null.
*/
public DelayInformation getDelayInformation() {
return delay;

View file

@ -32,7 +32,7 @@ import org.xmlpull.v1.XmlPullParser;
/**
* This class implements the {@link ExtensionElementProvider} to parse
* forwarded messages from a packet. It will return a {@link Forwarded} stanza(/packet) extension.
* forwarded messages from a packet. It will return a {@link Forwarded} stanza extension.
*
* @author Georg Lukas
*/

View file

@ -59,7 +59,7 @@ import org.jxmpp.jid.Jid;
* </ol>
*
* 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:
* the LastActivity stanza to them, as in the following code:
*
* <pre>
* XMPPConnection con = new XMPPTCPConnection(&quot;jabber.org&quot;);
@ -74,7 +74,7 @@ import org.jxmpp.jid.Jid;
* LastActivity activity = LastActivity.getLastActivity(con, &quot;xray@jabber.org&quot;);
* </pre>
*
* To get the uptime of a host, you simple send the LastActivity stanza(/packet) to it,
* To get the uptime of a host, you simple send the LastActivity stanza to it,
* as in the following code example:
* <p>
*
@ -228,7 +228,7 @@ public final class LastActivityManager extends Manager {
*
* @param jid
* the JID of the user.
* @return the LastActivity stanza(/packet) of the jid.
* @return the LastActivity stanza of the jid.
* @throws XMPPErrorException
* thrown if a server error has occured.
* @throws NoResponseException if there was no response from the server.

View file

@ -82,7 +82,7 @@ public final class PrivateDataManager extends Manager {
/**
* Returns the private data provider registered to the specified XML element name and namespace.
* For example, if a provider was registered to the element name "prefs" and the
* namespace "http://www.xmppclient.com/prefs", then the following stanza(/packet) would trigger
* namespace "http://www.xmppclient.com/prefs", then the following stanza would trigger
* the provider:
*
* <pre>

View file

@ -64,7 +64,7 @@ public class DefaultPrivateData implements PrivateData {
/**
* Returns the XML element name of the private data sub-packet root element.
*
* @return the XML element name of the stanza(/packet) extension.
* @return the XML element name of the stanza extension.
*/
@Override
public String getElementName() {
@ -74,7 +74,7 @@ public class DefaultPrivateData implements PrivateData {
/**
* Returns the XML namespace of the private data sub-packet root element.
*
* @return the XML namespace of the stanza(/packet) extension.
* @return the XML namespace of the stanza extension.
*/
@Override
public String getNamespace() {

View file

@ -99,7 +99,7 @@ public final class AccountManager extends Manager {
/**
* Flag that indicates whether the server supports In-Band Registration.
* In-Band Registration may be advertised as a stream feature. If no stream feature
* was advertised from the server then try sending an IQ stanza(/packet) to discover if In-Band
* was advertised from the server then try sending an IQ stanza to discover if In-Band
* Registration is available.
*/
private boolean accountCreationSupported = false;
@ -116,7 +116,7 @@ public final class AccountManager extends Manager {
/**
* Sets whether the server supports In-Band Registration. In-Band Registration may be
* advertised as a stream feature. If no stream feature was advertised from the server
* then try sending an IQ stanza(/packet) to discover if In-Band Registration is available.
* then try sending an IQ stanza to discover if In-Band Registration is available.
*
* @param accountCreationSupported true if the server supports In-Band Registration.
*/

View file

@ -29,7 +29,7 @@ public class JivePropertiesManager {
private static boolean javaObjectEnabled = false;
/**
* Enables deserialization of Java objects embedded in the 'properties' stanza(/packet) extension. Since
* Enables deserialization of Java objects embedded in the 'properties' stanza extension. Since
* this is a security sensitive feature, it is disabled per default in Smack. Only enable it if
* you are sure that you understand the potential security implications it can cause.
* <p>
@ -51,7 +51,7 @@ public class JivePropertiesManager {
/**
* Convenience method to add a property to a packet.
*
* @param packet the stanza(/packet) to add the property to.
* @param packet the stanza to add the property to.
* @param name the name of the property to add.
* @param value the value of the property to add.
*/
@ -65,7 +65,7 @@ public class JivePropertiesManager {
}
/**
* Convenience method to get a property from a packet. Will return null if the stanza(/packet) contains
* Convenience method to get a property from a packet. Will return null if the stanza contains
* not property with the given name.
*
* @param packet
@ -97,7 +97,7 @@ public class JivePropertiesManager {
}
/**
* Return a map of all properties of the given packet. If the stanza(/packet) contains no properties
* Return a map of all properties of the given packet. If the stanza contains no properties
* extension, an empty map will be returned.
*
* @param packet

View file

@ -41,7 +41,7 @@ import org.jivesoftware.smack.util.stringencoder.Base64;
*/
public class JivePropertiesExtension implements ExtensionElement {
/**
* Namespace used to store stanza(/packet) properties.
* Namespace used to store stanza properties.
*/
public static final String NAMESPACE = "http://www.jivesoftware.com/xmlns/xmpp/properties";
@ -60,7 +60,7 @@ public class JivePropertiesExtension implements ExtensionElement {
}
/**
* Returns the stanza(/packet) property with the specified name or <tt>null</tt> if the
* Returns the stanza property with the specified name or <tt>null</tt> if the
* property doesn't exist. Property values that were originally primitives will
* be returned as their object equivalent. For example, an int property will be
* returned as an Integer, a double as a Double, etc.

View file

@ -41,7 +41,7 @@ public class JivePropertiesExtensionProvider extends ExtensionElementProvider<Ji
* Parse a properties sub-packet. If any errors occur while de-serializing Java object
* properties, an exception will be printed and not thrown since a thrown exception will shut
* down the entire connection. ClassCastExceptions will occur when both the sender and receiver
* of the stanza(/packet) don't have identical versions of the same class.
* of the stanza don't have identical versions of the same class.
* <p>
* Note that you have to explicitly enabled Java object deserialization with @{link
* {@link JivePropertiesManager#setJavaObjectEnabled(boolean)}

View file

@ -1006,7 +1006,7 @@ public class MultiUserChat {
* is going to be sent by this MultiUserChat to the server. Stanza(/Packet) interceptors may
* add new extensions to the presence that is going to be sent to the MUC service.
*
* @param presenceInterceptor the new stanza(/packet) interceptor that will intercept presence packets.
* @param presenceInterceptor the new stanza interceptor that will intercept presence packets.
*/
public void addPresenceInterceptor(PresenceListener presenceInterceptor) {
presenceInterceptors.add(presenceInterceptor);
@ -1017,7 +1017,7 @@ public class MultiUserChat {
* was being sent by this MultiUserChat to the server. Stanza(/Packet) interceptors may
* add new extensions to the presence that is going to be sent to the MUC service.
*
* @param presenceInterceptor the stanza(/packet) interceptor to remove.
* @param presenceInterceptor the stanza interceptor to remove.
*/
public void removePresenceInterceptor(PresenceListener presenceInterceptor) {
presenceInterceptors.remove(presenceInterceptor);
@ -1693,11 +1693,11 @@ public class MultiUserChat {
}
/**
* Adds a stanza(/packet) listener that will be notified of any new Presence packets
* Adds a stanza listener that will be notified of any new Presence packets
* sent to the group chat. Using a listener is a suitable way to know when the list
* of occupants should be re-loaded due to any changes.
*
* @param listener a stanza(/packet) listener that will be notified of any presence packets
* @param listener a stanza listener that will be notified of any presence packets
* sent to the group chat.
* @return true if the listener was not already added.
*/
@ -1706,10 +1706,10 @@ public class MultiUserChat {
}
/**
* Removes a stanza(/packet) listener that was being notified of any new Presence packets
* Removes a stanza listener that was being notified of any new Presence packets
* sent to the group chat.
*
* @param listener a stanza(/packet) listener that was being notified of any presence packets
* @param listener a stanza listener that was being notified of any presence packets
* sent to the group chat.
* @return true if the listener was removed, otherwise the listener was not added previously.
*/
@ -1941,7 +1941,7 @@ public class MultiUserChat {
/**
* Returns the next available message in the chat. The method call will block
* (not return) until a stanza(/packet) is available or the <tt>timeout</tt> has elapased.
* (not return) until a stanza is available or the <tt>timeout</tt> has elapased.
* If the timeout elapses without a result, <tt>null</tt> will be returned.
*
* @param timeout the maximum amount of time to wait for the next message.
@ -1958,14 +1958,14 @@ public class MultiUserChat {
}
/**
* Adds a stanza(/packet) listener that will be notified of any new messages in the
* Adds a stanza listener that will be notified of any new messages in the
* group chat. Only "group chat" messages addressed to this group chat will
* be delivered to the listener. If you wish to listen for other packets
* that may be associated with this group chat, you should register a
* PacketListener directly with the XMPPConnection with the appropriate
* PacketListener.
*
* @param listener a stanza(/packet) listener.
* @param listener a stanza listener.
* @return true if the listener was not already added.
*/
public boolean addMessageListener(MessageListener listener) {
@ -1973,11 +1973,11 @@ public class MultiUserChat {
}
/**
* Removes a stanza(/packet) listener that was being notified of any new messages in the
* Removes a stanza listener that was being notified of any new messages in the
* multi user chat. Only "group chat" messages addressed to this multi user chat were
* being delivered to the listener.
*
* @param listener a stanza(/packet) listener.
* @param listener a stanza listener.
* @return true if the listener was removed, otherwise the listener was not added previously.
*/
public boolean removeMessageListener(MessageListener listener) {

View file

@ -75,7 +75,7 @@ public class RoomInfo {
*/
private final boolean moderated;
/**
* Every presence stanza(/packet) can include the JID of every occupant unless the owner deactives this
* Every presence stanza can include the JID of every occupant unless the owner deactives this
* configuration.
*/
private final boolean nonanonymous;

View file

@ -28,7 +28,7 @@ import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
/**
* A group chat invitation stanza(/packet) extension, which is used to invite other
* A group chat invitation stanza extension, which is used to invite other
* users to a group chat room. To invite a user to a group chat room, address
* a new message to the user and set the room name appropriately, as in the
* following code example:
@ -46,7 +46,7 @@ import org.xmlpull.v1.XmlPullParserException;
*
* <pre>
* PacketFilter filter = new StanzaExtensionFilter("x", "jabber:x:conference");
* // Create a stanza(/packet) collector or stanza(/packet) listeners using the filter...
* // Create a stanza collector or stanza listeners using the filter...
* </pre>
*
* <b>Note</b>: this protocol is outdated now that the Multi-User Chat (MUC) XEP is available
@ -59,12 +59,12 @@ import org.xmlpull.v1.XmlPullParserException;
public class GroupChatInvitation implements ExtensionElement {
/**
* Element name of the stanza(/packet) extension.
* Element name of the stanza extension.
*/
public static final String ELEMENT = "x";
/**
* Namespace of the stanza(/packet) extension.
* Namespace of the stanza extension.
*/
public static final String NAMESPACE = "jabber:x:conference";

View file

@ -23,7 +23,7 @@ import java.util.List;
import org.jivesoftware.smack.packet.IQ;
/**
* IQ stanza(/packet) that serves for kicking users, granting and revoking voice, banning users,
* IQ stanza that serves for kicking users, granting and revoking voice, banning users,
* modifying the ban list, granting and revoking membership and granting and revoking
* moderator privileges. All these operations are scoped by the
* 'http://jabber.org/protocol/muc#admin' namespace.

View file

@ -23,7 +23,7 @@ import java.util.List;
import org.jivesoftware.smack.packet.IQ;
/**
* IQ stanza(/packet) that serves for granting and revoking ownership privileges, granting
* IQ stanza that serves for granting and revoking ownership privileges, granting
* and revoking administrative privileges and destroying a room. All these operations
* are scoped by the 'http://jabber.org/protocol/muc#owner' namespace.
*

View file

@ -138,7 +138,7 @@ public class MUCUser implements ExtensionElement {
/**
* Returns the notification that the room has been destroyed. After a room has been destroyed,
* the room occupants will receive a Presence stanza(/packet) of type 'unavailable' with the reason for
* the room occupants will receive a Presence stanza of type 'unavailable' with the reason for
* the room destruction if provided by the room owner.
*
* @return a notification that the room has been destroyed.
@ -208,7 +208,7 @@ public class MUCUser implements ExtensionElement {
/**
* Sets the notification that the room has been destroyed. After a room has been destroyed,
* the room occupants will receive a Presence stanza(/packet) of type 'unavailable' with the reason for
* the room occupants will receive a Presence stanza of type 'unavailable' with the reason for
* the room destruction if provided by the room owner.
*
* @param destroy the notification that the room has been destroyed.

View file

@ -38,7 +38,7 @@ import org.xmlpull.v1.XmlPullParserException;
public class MUCUserProvider extends ExtensionElementProvider<MUCUser> {
/**
* Parses a MUCUser stanza(/packet) (extension sub-packet).
* Parses a MUCUser stanza (extension sub-packet).
*
* @param parser the XML parser, positioned at the starting element of the extension.
* @return a PacketExtension.

View file

@ -41,7 +41,7 @@ public class OfflineMessageInfo implements ExtensionElement {
* Returns the XML element name of the extension sub-packet root element.
* Always returns "offline"
*
* @return the XML element name of the stanza(/packet) extension.
* @return the XML element name of the stanza extension.
*/
@Override
public String getElementName() {
@ -52,7 +52,7 @@ public class OfflineMessageInfo implements ExtensionElement {
* Returns the XML namespace of the extension sub-packet root element.
* According the specification the namespace is always "http://jabber.org/protocol/offline"
*
* @return the XML namespace of the stanza(/packet) extension.
* @return the XML namespace of the stanza extension.
*/
@Override
public String getNamespace() {
@ -95,7 +95,7 @@ public class OfflineMessageInfo implements ExtensionElement {
public static class Provider extends ExtensionElementProvider<OfflineMessageInfo> {
/**
* Parses a OfflineMessageInfo stanza(/packet) (extension sub-packet).
* Parses a OfflineMessageInfo stanza (extension sub-packet).
*
* @param parser the XML parser, positioned at the starting element of the extension.
* @return a PacketExtension.

View file

@ -218,10 +218,10 @@ public final class PrivacyListManager extends Manager {
}
/**
* Send the {@link Privacy} stanza(/packet) to the server in order to know some privacy content and then
* Send the {@link Privacy} stanza to the server in order to know some privacy content and then
* waits for the answer.
*
* @param requestPrivacy is the {@link Privacy} stanza(/packet) configured properly whose XML
* @param requestPrivacy is the {@link Privacy} stanza configured properly whose XML
* will be sent to the server.
* @return a new {@link Privacy} with the data received from the server.
* @throws XMPPErrorException
@ -237,10 +237,10 @@ public final class PrivacyListManager extends Manager {
}
/**
* Send the {@link Privacy} stanza(/packet) to the server in order to modify the server privacy and waits
* Send the {@link Privacy} stanza to the server in order to modify the server privacy and waits
* for the answer.
*
* @param requestPrivacy is the {@link Privacy} stanza(/packet) configured properly whose xml will be
* @param requestPrivacy is the {@link Privacy} stanza configured properly whose xml will be
* sent to the server.
* @return a new {@link Privacy} with the data received from the server.
* @throws XMPPErrorException

View file

@ -19,7 +19,7 @@ package org.jivesoftware.smackx.privacy.packet;
import org.jivesoftware.smack.util.NumberUtil;
/**
* A privacy item acts a rule that when matched defines if a stanza(/packet) should be blocked or not.
* A privacy item acts a rule that when matched defines if a stanza should be blocked or not.
*
* Privacy Items can handle different kind of blocking communications based on JID, group,
* subscription type or globally by:<ul>

View file

@ -19,7 +19,7 @@ package org.jivesoftware.smackx.pubsub;
import org.jivesoftware.smackx.xdata.Form;
/**
* Generic stanza(/packet) extension which represents any PubSub form that is
* Generic stanza extension which represents any PubSub form that is
* parsed from the incoming stream or being sent out to the server.
*
* Form types are defined in {@link FormNodeType}.

View file

@ -170,7 +170,7 @@ public class LeafNode extends Node
* Get items persisted on the node.
* <p>
* {@code additionalExtensions} can be used e.g. to add a "Result Set Management" extension.
* {@code returnedExtensions} will be filled with the stanza(/packet) extensions found in the answer.
* {@code returnedExtensions} will be filled with the stanza extensions found in the answer.
* </p>
*
* @param additionalExtensions additional {@code PacketExtensions} to be added to the request.

View file

@ -145,7 +145,7 @@ public abstract class Node
* Get the subscriptions currently associated with this node.
* <p>
* {@code additionalExtensions} can be used e.g. to add a "Result Set Management" extension.
* {@code returnedExtensions} will be filled with the stanza(/packet) extensions found in the answer.
* {@code returnedExtensions} will be filled with the stanza extensions found in the answer.
* </p>
*
* @param additionalExtensions
@ -187,11 +187,11 @@ public abstract class Node
* </p>
* <p>
* {@code additionalExtensions} can be used e.g. to add a "Result Set Management" extension.
* {@code returnedExtensions} will be filled with the stanza(/packet) extensions found in the answer.
* {@code returnedExtensions} will be filled with the stanza extensions found in the answer.
* </p>
*
* @param additionalExtensions
* @param returnedExtensions a collection that will be filled with the returned stanza(/packet) extensions
* @param returnedExtensions a collection that will be filled with the returned stanza extensions
* @return List of {@link Subscription}
* @throws NoResponseException
* @throws XMPPErrorException
@ -242,7 +242,7 @@ public abstract class Node
* Get the affiliations of this node.
* <p>
* {@code additionalExtensions} can be used e.g. to add a "Result Set Management" extension.
* {@code returnedExtensions} will be filled with the stanza(/packet) extensions found in the answer.
* {@code returnedExtensions} will be filled with the stanza extensions found in the answer.
* </p>
*
* @param additionalExtensions additional {@code PacketExtensions} add to the request

View file

@ -19,7 +19,7 @@ package org.jivesoftware.smackx.pubsub;
import org.jivesoftware.smack.util.XmlStringBuilder;
/**
* A stanza(/packet) extension representing the <b>options</b> element.
* A stanza extension representing the <b>options</b> element.
*
* @author Robin Collier
*/

View file

@ -58,7 +58,7 @@ public class PubSub extends IQ
/**
* Returns the XML representation of a pubsub element according the specification.
*
* The XML representation will be inside of an iq stanza(/packet) like
* The XML representation will be inside of an iq stanza like
* in the following example:
* <pre>
* &lt;iq type='set' id="MlIpV-4" to="pubsub.gato.home" from="gato3@gato.home/Smack"&gt;

View file

@ -26,7 +26,7 @@ import org.jivesoftware.smackx.pubsub.packet.PubSubNamespace;
import org.xmlpull.v1.XmlPullParser;
/**
* Parses the root PubSub stanza(/packet) extensions of the {@link IQ} stanza(/packet) and returns
* Parses the root PubSub stanza extensions of the {@link IQ} stanza and returns
* a {@link PubSub} instance.
*
* @author Robin Collier

View file

@ -35,7 +35,7 @@ public interface ReceiptReceivedListener {
*
* @param fromJid the jid that send this receipt
* @param toJid the jid which received this receipt
* @param receiptId the message ID of the stanza(/packet) which has been received and this receipt is for
* @param receiptId the message ID of the stanza which has been received and this receipt is for
* @param receipt the receipt
*/
void onReceiptReceived(Jid fromJid, Jid toJid, String receiptId, Stanza receipt);

View file

@ -39,10 +39,10 @@ public class ReportedData {
private String title = "";
/**
* Returns a new ReportedData if the stanza(/packet) is used for reporting data and includes an
* Returns a new ReportedData if the stanza is used for reporting data and includes an
* extension that matches the elementName and namespace "x","jabber:x:data".
*
* @param packet the stanza(/packet) used for reporting data.
* @param packet the stanza used for reporting data.
* @return ReportedData from the packet if present, otherwise null.
*/
public static ReportedData getReportedDataFrom(Stanza packet) {

View file

@ -27,7 +27,7 @@ import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
/**
* IQ stanza(/packet) used for discovering the user's shared groups and for getting the answer back
* IQ stanza used for discovering the user's shared groups and for getting the answer back
* from the server.<p>
*
* Important note: This functionality is not part of the XMPP spec and it will only work

View file

@ -47,11 +47,11 @@ public class Form {
private DataForm dataForm;
/**
* Returns a new ReportedData if the stanza(/packet) is used for gathering data and includes an
* Returns a new ReportedData if the stanza is used for gathering data and includes an
* extension that matches the elementName and namespace "x","jabber:x:data".
*
* @param packet the stanza(/packet) used for gathering data.
* @return the data form parsed from the stanza(/packet) or <tt>null</tt> if there was not
* @param packet the stanza used for gathering data.
* @return the data form parsed from the stanza or <tt>null</tt> if there was not
* a form in the packet.
*/
public static Form getFormFrom(Stanza packet) {

View file

@ -44,7 +44,7 @@ public class DataForm implements ExtensionElement {
public enum Type {
/**
* This stanza(/packet) contains a form to fill out. Display it to the user (if your program can).
* This stanza contains a form to fill out. Display it to the user (if your program can).
*/
form,

View file

@ -46,7 +46,7 @@ public class XHTMLExtension implements ExtensionElement {
* Returns the XML element name of the extension sub-packet root element.
* Always returns "html"
*
* @return the XML element name of the stanza(/packet) extension.
* @return the XML element name of the stanza extension.
*/
@Override
public String getElementName() {
@ -57,7 +57,7 @@ public class XHTMLExtension implements ExtensionElement {
* Returns the XML namespace of the extension sub-packet root element.
* According the specification the namespace is always "http://jabber.org/protocol/xhtml-im"
*
* @return the XML namespace of the stanza(/packet) extension.
* @return the XML namespace of the stanza extension.
*/
@Override
public String getNamespace() {

View file

@ -45,7 +45,7 @@ public class DataListenerTest extends InitExtensions {
private static final Jid targetJID = JidTestUtil.FULL_JID_1_RESOURCE_1;
/**
* If a data stanza(/packet) of an unknown session is received it should be replied
* If a data stanza of an unknown session is received it should be replied
* with an &lt;item-not-found/&gt; error.
*
* @throws Exception should not happen

View file

@ -252,7 +252,7 @@ public class InBandBytestreamSessionMessageTest extends InitExtensions {
}
/**
* If a data stanza(/packet) is received out of order the session should be closed. See XEP-0047 Section
* If a data stanza is received out of order the session should be closed. See XEP-0047 Section
* 2.2.
*
* @throws Exception should not happen

View file

@ -363,7 +363,7 @@ public class InBandBytestreamSessionTest extends InitExtensions {
}
/**
* If the data stanza(/packet) has a sequence that is already used an 'unexpected-request' error should
* If the data stanza has a sequence that is already used an 'unexpected-request' error should
* be returned. See XEP-0047 Section 2.2.
*
* @throws Exception should not happen
@ -405,7 +405,7 @@ public class InBandBytestreamSessionTest extends InitExtensions {
}
/**
* If the data stanza(/packet) contains invalid Base64 encoding an 'bad-request' error should be
* If the data stanza contains invalid Base64 encoding an 'bad-request' error should be
* returned. See XEP-0047 Section 2.2.
*
* @throws Exception should not happen
@ -441,7 +441,7 @@ public class InBandBytestreamSessionTest extends InitExtensions {
}
/**
* If a data stanza(/packet) is received out of order the session should be closed. See XEP-0047 Section
* If a data stanza is received out of order the session should be closed. See XEP-0047 Section
* 2.2.
*
* @throws Exception should not happen

View file

@ -51,7 +51,7 @@ public class Socks5PacketUtils {
}
/**
* Returns a response to a SOCKS5 Bytestream initialization request. The stanza(/packet) doesn't contain
* Returns a response to a SOCKS5 Bytestream initialization request. The stanza doesn't contain
* the uses-host information.
*
* @param from the target
@ -67,7 +67,7 @@ public class Socks5PacketUtils {
}
/**
* Returns a response to an item discovery request. The stanza(/packet) doesn't contain any items.
* Returns a response to an item discovery request. The stanza doesn't contain any items.
*
* @param from the XMPP server
* @param to the XMPP client
@ -82,7 +82,7 @@ public class Socks5PacketUtils {
}
/**
* Returns a response to an info discovery request. The stanza(/packet) doesn't contain any infos.
* Returns a response to an info discovery request. The stanza doesn't contain any infos.
*
* @param from the target
* @param to the initiator

View file

@ -46,7 +46,7 @@ import org.mockito.stubbing.Answer;
public class ConnectionUtils {
/**
* Creates a mocked XMPP connection that stores every stanza(/packet) that is send over this
* Creates a mocked XMPP connection that stores every stanza that is send over this
* connection in the given protocol instance and returns the predefined answer packets
* form the protocol instance.
* <p>

View file

@ -50,7 +50,7 @@ import org.jivesoftware.smack.packet.Stanza;
* <pre>
* <code>
* public void methodToTest() {
* Stanza(/Packet) stanza(/packet) = new Packet(); // create an XMPP packet
* Stanza(/Packet) stanza = new Packet(); // create an XMPP packet
* StanzaCollector collector = connection.createStanzaCollector(new StanzaIdFilter());
* connection.sendStanza(packet);
* Stanza(/Packet) reply = collector.nextResult();
@ -62,7 +62,7 @@ import org.jivesoftware.smack.packet.Stanza;
* // create mocked connection
* XMPPConnection connection = ConnectionUtils.createMockedConnection(protocol, "user@xmpp-server", "xmpp-server");
*
* // add reply stanza(/packet) to protocol
* // add reply stanza to protocol
* Stanza(/Packet) reply = new Packet();
* protocol.add(reply);
*