Home | History | Annotate | Download | only in jbosh

Lines Matching refs:uri

22  * Each qualified name consists of a namespace URI and a local name.
29 * BOSH namespace URI.
35 * Namespace URI.
50 * Creates a new qualified name using a namespace URI and local name.
52 * @param uri namespace URI
57 final String uri,
59 return createWithPrefix(uri, local, null);
63 * Creates a new qualified name using a namespace URI and local name
66 * @param uri namespace URI
72 final String uri,
75 if (uri == null || uri.length() == 0) {
77 "URI is required and may not be null/empty"));
84 return new BodyQName(new QName(uri, local));
86 return new BodyQName(new QName(uri, local, prefix));
91 * Get the namespace URI of this qualified name.
93 * @return namespace uri
143 * Creates a new qualified name using the BOSH namespace URI and local name.