Lines Matching defs:of

6  * under the terms of the GNU General Public License version 2 only, as
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * You should have received a copy of the GNU General Public License version
57 * A list of {@link Header}s on a {@link Message}.
68 * expected to preserve the order of headers in the input
76 * track of headers that are understood and headers that are not.
93 * <li>Use one of the <tt>getXXX</tt> methods that take a
99 * <tt>markAsUnderstand</tt> to true, to do the obtaining of a header
109 * Intuitively speaking, at the end of the day, if a header is not
111 * will happen. The actual implementation of the checking is more complicated,
120 * Bit set to keep track of which headers are understood.
124 * most of the time a SOAP message will only have up to 32 headers,
130 * to keep track of whether those headers are understood.
164 * The total number of headers.
237 * By the definition of {@link ArrayList}, this operation requires
238 * O(n) search of the array, and thus inherently inefficient.
240 * Because of this, if you are developing a {@link Pipe} for
259 * Gets the first {@link Header} of the specified name.
291 * Gets the first {@link Header} of the specified name.
324 * Gets all the {@link Header}s of the specified name,
402 * Gets an iteration of headers {@link Header} in the specified namespace,
462 * Gets the first {@link Header} of the specified name targeted at the
465 * @param name name of the header
489 * Returns the value of WS-Addressing <code>To</code> header. The <code>version</code>
497 * @return Value of WS-Addressing To header, anonymous URI if no header is present
518 * Returns the value of WS-Addressing <code>Action</code> header. The <code>version</code>
526 * @return Value of WS-Addressing Action header, null if no header is present
545 * Returns the value of WS-Addressing <code>ReplyTo</code> header. The <code>version</code>
553 * @return Value of WS-Addressing ReplyTo header, null if no header is present
578 * Returns the value of WS-Addressing <code>FaultTo</code> header. The <code>version</code>
586 * @return Value of WS-Addressing FaultTo header, null if no header is present
610 * Returns the value of WS-Addressing <code>MessageID</code> header. The <code>version</code>
618 * @return Value of WS-Addressing MessageID header, null if no header is present
638 * Returns the value of WS-Addressing <code>RelatesTo</code> header. The <code>version</code>
646 * @return Value of WS-Addressing RelatesTo header, null if no header is present
666 * Creates a set of outbound WS-Addressing headers on the client with the
702 * Creates a set of outbound WS-Addressing headers on the client with the
763 private void fillRequestAddressingHeaders(@NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature of, @NotNull String action) {
767 if (of.getReplyTo() != null) {
768 add(of.getReplyTo().createHeader(av.replyToTag));
776 if (of.getFrom() != null) {
777 add(of.getFrom().createHeader(av.fromTag));
781 if (of.getRelatesToID() != null) {
782 add(new RelatesToHeader(av.relatesToTag, of.getRelatesToID()));
793 * @throws IllegalArgumentException if any of the parameters is null.
818 //As per WS-I BP 1.2/2.0, if one of the WSA headers is MU, then all WSA headers should be treated as MU.,
841 * Removes the first {@link Header} of the specified name.
843 * @param nsUri namespace URI of the header to remove
844 * @param localName local part of the FQN of the header to remove
862 * Removes the first {@link Header} of the specified name.
864 * @param name fully qualified name of the header to remove
875 * Removes the first {@link Header} of the specified name.
877 * @param index index of the header to remove
889 * from the set of understood header bits.
891 * @param index position of the bit to remove
903 * Then following 3 lines of code produce these results:
946 * Removes a single instance of the specified element from this
952 * result of the call).<p>