/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* AUTOGENERATED FILE: DO NOT EDIT */ package org.apache.jena.iri; import org.apache.jena.iri.impl.ViolationCodeInfo; import org.apache.jena.iri.impl.ViolationCodeInfo.InSpec; import org.apache.jena.iri.impl.ViolationCodeInfo.FromSpec_iri; import org.apache.jena.iri.impl.ViolationCodeInfo.FromSpec_other; import org.apache.jena.iri.impl.ViolationCodeInfo.FromSpec_scheme; import org.apache.jena.iri.impl.ViolationCodeInfo.FromAlso; import org.apache.jena.iri.impl.Specification; import org.apache.jena.iri.impl.SchemeSpecification; import org.apache.jena.iri.impl.Force; /** * Detailed description of problems detected. * This interface lists the codes returned by * {@link Violation#getViolationCode()}. * Note: not all are errors, some merely reflect internal workings. <p>The violations are evaluated against the following standards: </p> <dl> <dt><a name="ref-RDF">[RDF]</a> </dt> <dd><a href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"> Resource Description Framework (RDF): Concepts and Abstract Syntax (section RDF URI References) </a> </dd> <dd> The SCHEME component is required.<br> <br> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>foo/bar</code>></li> <li><<code>#frag</code>></li> <li><<code>//example.org/foo/bar#frag</code>></li> </ul> </dd> <dt><a name="ref-URI">[URI]</a> RFC 3986 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3986.html"> Uniform Resource Identifier (URI): Generic Syntax</a> </dd> <dt><a name="ref-Unicode">[Unicode]</a> </dt> <dd><a href="http://www.unicode.org/"> Unicode</a> </dd> <dt><a name="ref-IRI">[IRI]</a> RFC 3987 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3987.html"> Internationalized Resource Identifiers (IRIs)</a> </dd> <dt><a name="ref-XML">[XML]</a> </dt> <dd><a href="http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"> Extensible Markup Language (XML) 1.0 (Third Edition) (section system identifier) </a> </dd> <dd> The FRAGMENT component must be omitted.<br /> </dd> <dt><a name="ref-XLink">[XLink]</a> </dt> <dd><a href="http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"> XML Linking Language (XLink) Version 1.0 (section Locator Attribute (href)) </a> </dd> <dt><a name="ref-Schema">[Schema]</a> </dt> <dd><a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"> XML Schema Part 2: Datatypes Second Edition (section anyURI) </a> </dd> </dl> <p>Scheme specific checks are enabled. The syntax of the following schemes is fully supported: </p> <dl> <dt><a name="ref-http">[http]</a> RFC 2616 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2616.html"> Hypertext Transfer Protocol -- HTTP/1.1</a> </dd> <dd> Pertinent text from the specification includes: <br /> <dl> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc2616.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> <pre> http_URL = "http:" "//" host [ ":" port ] [ abs_path [ "?" query ]] </pre> </dd> </dl> </dd> <dd> <br/> This scheme requires the use of hostnames conforming to DNS syntax. The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled. To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}. The default port is 80.<br /> The USER component must be omitted.<br /> The HOST component is required.<br /> <br/> The following are examples of well-formed IRIs using this scheme: <ul> <li><<code>http://www.example.org/foo/bar</code>></li> </ul> <br/> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>http://www.example.org:80/foo/bar</code>></li> <li><<code>http:foo/bar</code>></li> <li><<code>http://user@www.example.org/foo/bar</code>></li> </ul> </dd> <dt><a name="ref-https">[https]</a> RFC 2818 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2818.html"> Hypertext Transfer Protocol Secure</a> </dd> <dd> Pertinent text from the specification includes: <br /> <dl> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc2818.html#sec-2.4">section 2.4</a> </dt> <dd> HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier. </dd> <dt> See <a href="#ref-http"> [http]</a>, specifically, <a href="http://www.apps.ietf.org/rfc/rfc2818.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> <pre> http_URL = "http:" "//" host [ ":" port ] [ abs_path [ "?" query ]] </pre> </dd> </dl> </dd> <dd> <br/> This scheme requires the use of hostnames conforming to DNS syntax. The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled. To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}. The default port is 443.<br /> The USER component must be omitted.<br /> The HOST component is required.<br /> <br/> The following are examples of well-formed IRIs using this scheme: <ul> <li><<code>https://www.example.org/foo/bar</code>></li> </ul> <br/> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>https://www.example.org:443/foo/bar</code>></li> <li><<code>https:foo/bar</code>></li> <li><<code>https://user@www.example.org/foo/bar</code>></li> </ul> </dd> <dt><a name="ref-ftp">[ftp]</a> RFC 1738 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.2"> File Transfer Protocol (section 3.2) </a> </dd> <dd> Pertinent text from the specification includes: <br /> <dl> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5</a> </dt> <dd> <pre> ftpurl = "ftp://" login [ "/" fpath [ ";type=" ftptype ]] fpath = fsegment *[ "/" fsegment ] fsegment = *[ uchar | "?" | ":" | "@" | "&" | "=" ] ftptype = "A" | "I" | "D" | "a" | "i" | "d" </pre> <pre> login = [ user [ ":" password ] "@" ] hostport </pre> <pre> safe = "$" | "-" | "_" | "." | "+" extra = "!" | "*" | "'" | "(" | ")" | "," escape = "%" hex hex unreserved = alpha | digit | safe | extra uchar = unreserved | escape </pre> </dd> </dl> </dd> <dd> <br/> This scheme requires the use of hostnames conforming to DNS syntax. The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled. To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}. The default port is 21.<br /> The HOST component is required.<br /> The PATHQUERY component: <ul> <li> is required to match the regular expression: [^;~]*(;@{mustLowerCase(type)}=@{shouldLowerCase([aid])}|) </li> <li> may use ~; as sub-delimiters, and care must be taken when percent escaping or unescaping these delimiters to not disrupt the scheme specific syntax. </li> </ul> <br/> The following are examples of well-formed IRIs using this scheme: <ul> <li><<code>ftp://user@example.org/foo/bar;type=d</code>></li> </ul> <br/> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>ftp:///foo/bar</code>></li> <li><<code>ftp://user@example.org/foo/bar;type=z</code>></li> <li><<code>ftp://user@example.org/foo/b;ar;type=d</code>></li> </ul> </dd> <dt><a name="ref-news">[news]</a> RFC 1738 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.6"> USENET news (section 3.6) </a> </dd> <dd> Pertinent text from the specification includes: <br /> <dl> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5</a> </dt> <dd> <pre> newsurl = "news:" grouppart grouppart = "*" | group | article group = alpha *[ alpha | digit | "-" | "." | "+" | "_" ] article = 1*[ uchar | ";" | "/" | "?" | ":" | "&" | "=" ] "@" host </pre> <pre> safe = "$" | "-" | "_" | "." | "+" extra = "!" | "*" | "'" | "(" | ")" | "," escape = "%" hex hex unreserved = alpha | digit | safe | extra uchar = unreserved | escape </pre> </dd> </dl> </dd> <dd> The AUTHORITY component must be omitted.<br /> The PATH component is required.<br /> The PATHQUERY component: <ul> <li> is required to match the regular expression: [^@]+@@{host}|[*]|[a-zA-Z][-a-zA-Z0-9.+_]* </li> <li> may use ~@ as sub-delimiters, and care must be taken when percent escaping or unescaping these delimiters to not disrupt the scheme specific syntax. </li> </ul> <br/> The following are examples of well-formed IRIs using this scheme: <ul> <li><<code>news:*</code>></li> <li><<code>news:group.it</code>></li> <li><<code>news:arb?itrary@news.example.org</code>></li> <li><<code>news:arbitrary@news.example.org</code>></li> </ul> <br/> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>news:arbitrary@news.exampl\u00E7.org</code>></li> <li><<code>news:arbitr?ary@news.exampl\u00E7.org</code>></li> <li><<code>news:///foo/bar</code>></li> <li><<code>news://user@example.org/foo</code>></li> </ul> </dd> <dt><a name="ref-nntp">[nntp]</a> RFC 1738 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7"> USENET news using NNTP access (section 3.7) </a> </dd> <dd> Pertinent text from the specification includes: <br /> <dl> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5</a> </dt> <dd> <pre> nntpurl = "nntp://" hostport "/" group [ "/" digits ] </pre> <pre> group = alpha *[ alpha | digit | "-" | "." | "+" | "_" ] </pre> </dd> </dl> </dd> <dd> <br/> This scheme requires the use of hostnames conforming to DNS syntax. The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled. To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}. The default port is 119.<br /> The QUERY component must be omitted.<br /> The USER component must be omitted.<br /> The HOST component is required.<br /> The PATH component is required to match the regular expression: /[a-zA-Z][-a-zA-Z0-9.+_]*(/[0-9]+)? <br/> <br/> The following are examples of well-formed IRIs using this scheme: <ul> <li><<code>nntp://example.org/foo4</code>></li> <li><<code>nntp://example.org/foo/4</code>></li> </ul> <br/> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>nntp://user@example.org/foo</code>></li> <li><<code>nntp:/foo</code>></li> <li><<code>nntp:///foo</code>></li> <li><<code>nntp://example.org/foo/4/3</code>></li> <li><<code>nntp://example.org/</code>></li> <li><<code>nntp://example.org/foo/</code>></li> <li><<code>nntp://example.org/*</code>></li> </ul> </dd> <dt><a name="ref-file">[file]</a> RFC 1738 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.10"> Host-specific file names (section 3.10) </a> </dd> <dd> Pertinent text from the specification includes: <br /> <dl> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5</a> </dt> <dd> <pre> fileurl = "file://" [ host | "localhost" ] "/" fpath </pre> <pre> fpath = fsegment *[ "/" fsegment ] fsegment = *[ uchar | "?" | ":" | "@" | "&" | "=" ] </pre> <pre> safe = "$" | "-" | "_" | "." | "+" extra = "!" | "*" | "'" | "(" | ")" | "," escape = "%" hex hex unreserved = alpha | digit | safe | extra uchar = unreserved | escape </pre> </dd> </dl> </dd> <dd> <br/> This scheme requires the use of hostnames conforming to DNS syntax. The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled. To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}. The USER component must be omitted.<br /> The PORT component must be omitted.<br /> The PATH component is required.<br /> The AUTHORITY component is required.<br /> The PATHQUERY component: <ul> <li> is required to match the regular expression: [^;~]* </li> <li> may use ~; as sub-delimiters, and care must be taken when percent escaping or unescaping these delimiters to not disrupt the scheme specific syntax. </li> </ul> <br/> The following are examples of well-formed IRIs using this scheme: <ul> <li><<code>file:///foo/b</code>></li> <li><<code>file:///foo/b?ar/yuk</code>></li> </ul> <br/> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>file://user@example.org/foo/bar</code>></li> <li><<code>file://eg:4029/foo/bar</code>></li> <li><<code>file:/foo/bar</code>></li> <li><<code>file://example.org</code>></li> <li><<code>file://foo/bar;t</code>></li> <li><<code>file://foo/~jjc</code>></li> </ul> </dd> </dl> <p>The syntax of the following schemes is partially supported: </p> <dl> <dt><a name="ref-mailto">[mailto]</a> RFC 2368 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2368.html"> Electronic mail address</a> </dd> <dd> The AUTHORITY component must be omitted.<br /> </dd> <dt><a name="ref-urn">[urn]</a> RFC 2141 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2141.html"> Uniform Resource Names</a> </dd> <dd> Pertinent text from the specification includes: <br /> <dl> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2">section 2</a> </dt> <dd> All URNs have the following syntax (phrases enclosed in quotes are REQUIRED): <pre> <URN> ::= "urn:" <NID> ":" <NSS> </pre> </dd> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.1">section 2.1</a> </dt> <dd> <pre> <NID> ::= <let-num> [ 1,31<let-num-hyp> ] <let-num-hyp> ::= <upper> | <lower> | <number> | "-" <let-num> ::= <upper> | <lower> | <number> </pre> </dd> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.2">section 2.2</a> </dt> <dd> <pre> <NSS> ::= 1*<URN chars> <URN chars> ::= <trans> | "%" <hex> <hex> <trans> ::= <upper> | <lower> | <number> | <other> | <reserved> <other> ::= "(" | ")" | "+" | "," | "-" | "." | ":" | "=" | "@" | ";" | "$" | "_" | "!" | "*" | "'" </pre> </dd> <dt> See <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.3.2">section 2.3.2</a> </dt> <dd> RFC 1630 [2] reserves the characters "/", "?", and "#" for particular purposes. The URN-WG has not yet debated the applicability and precise semantics of those purposes as applied to URNs. Therefore, these characters are RESERVED for future developments. Namespace developers SHOULD NOT use these characters in unencoded form, but rather use the appropriate %-encoding for each character. </dd> </dl> </dd> <dd> The AUTHORITY component must be omitted.<br /> The QUERY component must be omitted.<br /> The PATH component is required.<br /> The PATH component: <ul> <li> is required to match the regular expression: (?![uU][rR][nN]:)[a-zA-Z0-9][-a-zA-Z0-9]{1,31}:[^/~]+ </li> <li> may use /~ as sub-delimiters, and care must be taken when percent escaping or unescaping these delimiters to not disrupt the scheme specific syntax. </li> </ul> <br/>TODO: case of NIS<br/>TODO: registry of URNs, implement something of the NSS with Namespace specific rules. <br/>TODO: To avoid confusion with the "urn:" identifier, the NID "urn" is reserved and MUST NOT be used. <br/>TODO: e-mail about frags in URNs<br/>TODO: In addition, octet 0 (0 hex) should NEVER be used, in either unencoded or %-encoded form. <br/> The following are examples of well-formed IRIs using this scheme: <ul> <li><<code>urn:x-hp:foo\u00E9</code>></li> <li><<code>urn:urn-1:foo</code>></li> </ul> <br/> The following are examples of ill-formed IRIs using this scheme: <ul> <li><<code>urn:x-hp:foo/bar</code>></li> <li><<code>urn:urn:foo</code>></li> <li><<code>urn://foo</code>></li> <li><<code>urn:foo:bar?query</code>></li> <li><<code>urn:foo:ff~</code>></li> </ul> </dd> </dl> <p>The names of the following registered schemes are known, but they are otherwise unsupported: </p> <dl> <dt><a name="ref-telnet">[telnet]</a> RFC 4248 </dt> <dd><a href="http://www.ietf.org/rfc/rfc4248.txt"> Reference to interactive sessions</a> </dd> <dt><a name="ref-wais">[wais]</a> RFC 4156 </dt> <dd><a href="http://www.ietf.org/rfc/rfc4156.txt"> Wide Area Information Servers</a> </dd> <dt><a name="ref-prospero">[prospero]</a> RFC 4157 </dt> <dd><a href="http://www.ietf.org/rfc/rfc4157.txt"> Prospero Directory Service</a> </dd> <dt><a name="ref-gopher">[gopher]</a> RFC 4266 </dt> <dd><a href="http://www.ietf.org/rfc/rfc4266.txt"> The gopher URI scheme</a> </dd> <dt><a name="ref-z39.50s">[z39.50s]</a> RFC 2056 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2056.html"> Z39.50 Session</a> </dd> <dt><a name="ref-z39.50r">[z39.50r]</a> RFC 2056 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2056.html"> Z39.50 Retrieval</a> </dd> <dt><a name="ref-cid">[cid]</a> RFC 2392 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2392.html"> content identifier</a> </dd> <dt><a name="ref-mid">[mid]</a> RFC 2392 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2392.html"> message identifier</a> </dd> <dt><a name="ref-vemmi">[vemmi]</a> RFC 2122 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2122.html"> versatile multimedia interface</a> </dd> <dt><a name="ref-service">[service]</a> RFC 2609 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2609.html"> service location</a> </dd> <dt><a name="ref-imap">[imap]</a> RFC 2192 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2192.html"> internet message access protocol</a> </dd> <dt><a name="ref-nfs">[nfs]</a> RFC 2224 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2224.html"> network file system protocol</a> </dd> <dt><a name="ref-acap">[acap]</a> RFC 2244 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2244.html"> application configuration access protocol</a> </dd> <dt><a name="ref-rtsp">[rtsp]</a> RFC 2326 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2326.html"> real time streaming protocol</a> </dd> <dt><a name="ref-tip">[tip]</a> RFC 2371 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2371.html"> Transaction Internet Protocol</a> </dd> <dt><a name="ref-pop">[pop]</a> RFC 2384 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2384.html"> Post Office Protocol v3</a> </dd> <dt><a name="ref-data">[data]</a> RFC 2397 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2397.html"> data</a> </dd> <dt><a name="ref-dav">[dav]</a> RFC 2518 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2518.html"> dav</a> </dd> <dt><a name="ref-opaquelocktoken">[opaquelocktoken]</a> RFC 2518 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2518.html"> opaquelocktoken</a> </dd> <dt><a name="ref-sip">[sip]</a> RFC 3261 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3261.html"> session initiation protocol</a> </dd> <dt><a name="ref-sips">[sips]</a> RFC 3261 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3261.html"> secure session intitiaion protocol</a> </dd> <dt><a name="ref-tel">[tel]</a> RFC 2806 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2806.html"> telephone</a> </dd> <dt><a name="ref-fax">[fax]</a> RFC 2806 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2806.html"> fax</a> </dd> <dt><a name="ref-modem">[modem]</a> RFC 2806 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2806.html"> modem</a> </dd> <dt><a name="ref-soap.beep">[soap.beep]</a> RFC 3288 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3288.html"> soap.beep</a> </dd> <dt><a name="ref-soap.beeps">[soap.beeps]</a> RFC 3288 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3288.html"> soap.beeps</a> </dd> <dt><a name="ref-xmlrpc.beep">[xmlrpc.beep]</a> RFC 3529 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3529.html"> xmlrpc.beep</a> </dd> <dt><a name="ref-xmlrpc.beeps">[xmlrpc.beeps]</a> RFC 3529 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3529.html"> xmlrpc.beeps</a> </dd> <dt><a name="ref-go">[go]</a> RFC 3368 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3368.html"> go</a> </dd> <dt><a name="ref-h323">[h323]</a> RFC 3508 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3508.html"> H.323</a> </dd> <dt><a name="ref-ipp">[ipp]</a> RFC 3510 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3510.html"> Internet Printing Protocol</a> </dd> <dt><a name="ref-tftp">[tftp]</a> RFC 3617 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3617.html"> Trivial File Transfer Protocol</a> </dd> <dt><a name="ref-mupdate">[mupdate]</a> RFC 3656 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3656.html"> Mailbox Update (MUPDATE) Protocol</a> </dd> <dt><a name="ref-pres">[pres]</a> RFC 3859 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3859.html"> Presence</a> </dd> <dt><a name="ref-im">[im]</a> RFC 3860 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3860.html"> Instant Messaging</a> </dd> <dt><a name="ref-mtqp">[mtqp]</a> RFC 3887 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3887.html"> Message Tracking Query Protocol</a> </dd> <dt><a name="ref-iris.beep">[iris.beep]</a> RFC 3983 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc3983.html"> iris.beep</a> </dd> <dt><a name="ref-dict">[dict]</a> RFC 2229 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2229.html"> dictionary service protocol</a> </dd> <dt><a name="ref-snmp">[snmp]</a> RFC 4088 </dt> <dd><a href="http://www.ietf.org/rfc/rfc4088.txt"> Simple Network Management Protocol</a> </dd> <dt><a name="ref-crid">[crid]</a> RFC 4078 </dt> <dd><a href="http://www.ietf.org/rfc/rfc4078.txt"> TV-Anytime Content Reference Identifier</a> </dd> <dt><a name="ref-tag">[tag]</a> RFC 4151 </dt> <dd><a href="http://www.ietf.org/rfc/rfc4151.txt"> tag</a> </dd> <dt><a name="ref-afs">[afs]</a> </dt> <dd><a href="http://www.iana.org/assignments/uri-schemes"> Andrew File System global file names</a> </dd> <dt><a name="ref-tn3270">[tn3270]</a> </dt> <dd><a href="http://www.iana.org/assignments/uri-schemes"> Interactive 3270 emulation sessions</a> </dd> <dt><a name="ref-mailserver">[mailserver]</a> </dt> <dd><a href="http://www.iana.org/assignments/uri-schemes"> Access to data available from mail servers</a> </dd> <dt><a name="ref-dns">[dns]</a> </dt> <dd><a href="http://www.iana.org/assignments/uri-schemes"> Domain Name System</a> </dd> <dt><a name="ref-info">[info]</a> </dt> <dd><a href="http://www.iana.org/assignments/uri-schemes"> Information Assets with Identifiers in Public Namespaces</a> </dd> <dt><a name="ref-ldap">[ldap]</a> </dt> <dd><a href="http://www.iana.org/assignments/uri-schemes"> Lightweight Directory Access Protocol</a> </dd> </dl> <p>Other relevant standards include: </p> <dl> <dt><a name="ref-URL_Registratrion">[URL_Registratrion]</a> RFC 2717 </dt> <dd><a href="http://www.apps.ietf.org/rfc/rfc2717.html"> Registration Procedures for URL Scheme Names</a> </dd> </dl> */ public interface ViolationCodes { /** This class is not part of the API. */ class Initialize implements IRIComponents, Force { static { Specification spec; spec = new Specification( "RDF", "iri", "", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref", "Resource Description Framework (RDF): Concepts and Abstract Syntax", "RDF URI References", new String[]{ "foo/bar", "#frag", "//example.org/foo/bar#frag", }, new String[]{ } ); spec.require( IRIComponents.SCHEME ); spec = new Specification( "URI", "iri", "3986", "http://www.apps.ietf.org/rfc/rfc3986.html", "Uniform Resource Identifier (URI): Generic Syntax", "", new String[]{ }, new String[]{ } ); spec = new Specification( "Unicode", "iri", "", "http://www.unicode.org/", "Unicode", "", new String[]{ }, new String[]{ } ); spec = new Specification( "IRI", "iri", "3987", "http://www.apps.ietf.org/rfc/rfc3987.html", "Internationalized Resource Identifiers (IRIs)", "", new String[]{ }, new String[]{ } ); spec = new Specification( "XML", "iri", "", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid", "Extensible Markup Language (XML) 1.0 (Third Edition)", "system identifier", new String[]{ }, new String[]{ } ); spec.prohibit( IRIComponents.FRAGMENT ); spec = new Specification( "XLink", "iri", "", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators", "XML Linking Language (XLink) Version 1.0", "Locator Attribute (href)", new String[]{ }, new String[]{ } ); spec = new Specification( "Schema", "iri", "", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI", "XML Schema Part 2: Datatypes Second Edition", "anyURI", new String[]{ }, new String[]{ } ); spec = new Specification( "URL_Registratrion", "other", "2717", "http://www.apps.ietf.org/rfc/rfc2717.html", "Registration Procedures for URL Scheme Names", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "http", "2616", "http://www.apps.ietf.org/rfc/rfc2616.html", "Hypertext Transfer Protocol -- HTTP/1.1", "", new String[]{ "http://www.example.org:80/foo/bar", "http:foo/bar", "http://user@www.example.org/foo/bar", }, new String[]{ "http://www.example.org/foo/bar", } ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc2616.html#sec-3.2.2", ""+ "\n"+ "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+ "", ""+ "</p><pre>\n"+ "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+ "</pre>"+ "<p>" ); spec.setDNS(true); spec.port(80); spec.prohibit( IRIComponents.USER ); spec.require( IRIComponents.HOST ); spec = new SchemeSpecification( "https", "2818", "http://www.apps.ietf.org/rfc/rfc2818.html", "Hypertext Transfer Protocol Secure", "", new String[]{ "https://www.example.org:443/foo/bar", "https:foo/bar", "https://user@www.example.org/foo/bar", }, new String[]{ "https://www.example.org/foo/bar", } ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc2818.html#sec-2.4", "HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier.", "HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier." ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc2818.html#sec-3.2.2", ""+ "\n"+ "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+ "", ""+ "</p><pre>\n"+ "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+ "</pre>"+ "<p>" ); spec.setDNS(true); spec.port(443); spec.prohibit( IRIComponents.USER ); spec.require( IRIComponents.HOST ); spec = new SchemeSpecification( "ftp", "1738", "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.2", "File Transfer Protocol", "3.2", new String[]{ "ftp:///foo/bar", "ftp://user@example.org/foo/bar;type=z", "ftp://user@example.org/foo/b;ar;type=d", }, new String[]{ "ftp://user@example.org/foo/bar;type=d", } ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "ftpurl = \"ftp://\" login [ \"/\" fpath [ \";type=\" ftptype ]]\n"+ "fpath = fsegment *[ \"/\" fsegment ]\n"+ "fsegment = *[ uchar | \"?\" | \":\" | \"@\" | \"&\" | \"=\" ]\n"+ "ftptype = \"A\" | \"I\" | \"D\" | \"a\" | \"i\" | \"d\"\n"+ ""+ "\n"+ "login = [ user [ \":\" password ] \"@\" ] hostport\n"+ ""+ "\n"+ "safe = \"$\" | \"-\" | \"_\" | \".\" | \"+\"\n"+ "extra = \"!\" | \"*\" | \"'\" | \"(\" | \")\" | \",\"\n"+ "escape = \"%\" hex hex\n"+ "unreserved = alpha | digit | safe | extra\n"+ "uchar = unreserved | escape\n"+ "", ""+ "</p><pre>\n"+ "ftpurl = \"ftp://\" login [ \"/\" fpath [ \";type=\" ftptype ]]\n"+ "fpath = fsegment *[ \"/\" fsegment ]\n"+ "fsegment = *[ uchar | \"?\" | \":\" | \"@\" | \"&\" | \"=\" ]\n"+ "ftptype = \"A\" | \"I\" | \"D\" | \"a\" | \"i\" | \"d\"\n"+ "</pre>"+ "<p>"+ "</p><pre>\n"+ "login = [ user [ \":\" password ] \"@\" ] hostport\n"+ "</pre>"+ "<p>"+ "</p><pre>\n"+ "safe = \"$\" | \"-\" | \"_\" | \".\" | \"+\"\n"+ "extra = \"!\" | \"*\" | \"'\" | \"(\" | \")\" | \",\"\n"+ "escape = \"%\" hex hex\n"+ "unreserved = alpha | digit | safe | extra\n"+ "uchar = unreserved | escape\n"+ "</pre>"+ "<p>" ); spec.setDNS(true); spec.port(21); spec.require( IRIComponents.HOST ); spec.setPattern(PATHQUERY, "[^;~]*(;@{mustLowerCase(type)}=@{shouldLowerCase([aid])}|)" ); spec.setReserved(PATHQUERY,"~;"); spec = new SchemeSpecification( "mailto", "2368", "http://www.apps.ietf.org/rfc/rfc2368.html", "Electronic mail address", "", new String[]{ }, new String[]{ } ); spec.prohibit( IRIComponents.AUTHORITY ); spec = new SchemeSpecification( "news", "1738", "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.6", "USENET news", "3.6", new String[]{ "news:arbitrary@news.exampl\u00E7.org", "news:arbitr?ary@news.exampl\u00E7.org", "news:///foo/bar", "news://user@example.org/foo", }, new String[]{ "news:*", "news:group.it", "news:arb?itrary@news.example.org", "news:arbitrary@news.example.org", } ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "newsurl = \"news:\" grouppart\n"+ "grouppart = \"*\" | group | article\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "article = 1*[ uchar | \";\" | \"/\" | \"?\" | \":\" | \"&\" | \"=\" ] \"@\" host\n"+ ""+ "\n"+ "safe = \"$\" | \"-\" | \"_\" | \".\" | \"+\"\n"+ "extra = \"!\" | \"*\" | \"'\" | \"(\" | \")\" | \",\"\n"+ "escape = \"%\" hex hex\n"+ "unreserved = alpha | digit | safe | extra\n"+ "uchar = unreserved | escape\n"+ "", ""+ "</p><pre>\n"+ "newsurl = \"news:\" grouppart\n"+ "grouppart = \"*\" | group | article\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "article = 1*[ uchar | \";\" | \"/\" | \"?\" | \":\" | \"&\" | \"=\" ] \"@\" host\n"+ "</pre>"+ "<p>"+ "</p><pre>\n"+ "safe = \"$\" | \"-\" | \"_\" | \".\" | \"+\"\n"+ "extra = \"!\" | \"*\" | \"'\" | \"(\" | \")\" | \",\"\n"+ "escape = \"%\" hex hex\n"+ "unreserved = alpha | digit | safe | extra\n"+ "uchar = unreserved | escape\n"+ "</pre>"+ "<p>" ); spec.prohibit( IRIComponents.AUTHORITY ); spec.require( IRIComponents.PATH ); spec.setPattern(PATHQUERY, "[^@]+@@{host}|[*]|[a-zA-Z][-a-zA-Z0-9.+_]*" ); spec.setReserved(PATHQUERY,"~@"); spec = new SchemeSpecification( "nntp", "1738", "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7", "USENET news using NNTP access", "3.7", new String[]{ "nntp://user@example.org/foo", "nntp:/foo", "nntp:///foo", "nntp://example.org/foo/4/3", "nntp://example.org/", "nntp://example.org/foo/", "nntp://example.org/*", }, new String[]{ "nntp://example.org/foo4", "nntp://example.org/foo/4", } ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "nntpurl = \"nntp://\" hostport \"/\" group [ \"/\" digits ]\n"+ ""+ "\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "", ""+ "</p><pre>\n"+ "nntpurl = \"nntp://\" hostport \"/\" group [ \"/\" digits ]\n"+ "</pre>"+ "<p>"+ "</p><pre>\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "</pre>"+ "<p>" ); spec.setDNS(true); spec.port(119); spec.prohibit( IRIComponents.QUERY ); spec.prohibit( IRIComponents.USER ); spec.require( IRIComponents.HOST ); spec.setPattern(PATH, "/[a-zA-Z][-a-zA-Z0-9.+_]*(/[0-9]+)?" ); spec = new SchemeSpecification( "telnet", "4248", "http://www.ietf.org/rfc/rfc4248.txt", "Reference to interactive sessions", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "wais", "4156", "http://www.ietf.org/rfc/rfc4156.txt", "Wide Area Information Servers", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "file", "1738", "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.10", "Host-specific file names", "3.10", new String[]{ "file://user@example.org/foo/bar", "file://eg:4029/foo/bar", "file:/foo/bar", "file://example.org", "file://foo/bar;t", "file://foo/~jjc", }, new String[]{ "file:///foo/b", "file:///foo/b?ar/yuk", } ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ ""+ "\n"+ "fpath = fsegment *[ \"/\" fsegment ]\n"+ "fsegment = *[ uchar | \"?\" | \":\" | \"@\" | \"&\" | \"=\" ]\n"+ ""+ "\n"+ "safe = \"$\" | \"-\" | \"_\" | \".\" | \"+\"\n"+ "extra = \"!\" | \"*\" | \"'\" | \"(\" | \")\" | \",\"\n"+ "escape = \"%\" hex hex\n"+ "unreserved = alpha | digit | safe | extra\n"+ "uchar = unreserved | escape\n"+ "", ""+ "</p><pre>\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "</pre>"+ "<p>"+ "</p><pre>\n"+ "fpath = fsegment *[ \"/\" fsegment ]\n"+ "fsegment = *[ uchar | \"?\" | \":\" | \"@\" | \"&\" | \"=\" ]\n"+ "</pre>"+ "<p>"+ "</p><pre>\n"+ "safe = \"$\" | \"-\" | \"_\" | \".\" | \"+\"\n"+ "extra = \"!\" | \"*\" | \"'\" | \"(\" | \")\" | \",\"\n"+ "escape = \"%\" hex hex\n"+ "unreserved = alpha | digit | safe | extra\n"+ "uchar = unreserved | escape\n"+ "</pre>"+ "<p>" ); spec.setDNS(true); spec.prohibit( IRIComponents.USER ); spec.prohibit( IRIComponents.PORT ); spec.require( IRIComponents.PATH ); spec.require( IRIComponents.AUTHORITY ); spec.setPattern(PATHQUERY, "[^;~]*" ); spec.setReserved(PATHQUERY,"~;"); spec = new SchemeSpecification( "prospero", "4157", "http://www.ietf.org/rfc/rfc4157.txt", "Prospero Directory Service", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "gopher", "4266", "http://www.ietf.org/rfc/rfc4266.txt", "The gopher URI scheme", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "z39.50s", "2056", "http://www.apps.ietf.org/rfc/rfc2056.html", "Z39.50 Session", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "z39.50r", "2056", "http://www.apps.ietf.org/rfc/rfc2056.html", "Z39.50 Retrieval", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "cid", "2392", "http://www.apps.ietf.org/rfc/rfc2392.html", "content identifier", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "mid", "2392", "http://www.apps.ietf.org/rfc/rfc2392.html", "message identifier", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "vemmi", "2122", "http://www.apps.ietf.org/rfc/rfc2122.html", "versatile multimedia interface", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "service", "2609", "http://www.apps.ietf.org/rfc/rfc2609.html", "service location", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "imap", "2192", "http://www.apps.ietf.org/rfc/rfc2192.html", "internet message access protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "nfs", "2224", "http://www.apps.ietf.org/rfc/rfc2224.html", "network file system protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "acap", "2244", "http://www.apps.ietf.org/rfc/rfc2244.html", "application configuration access protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "rtsp", "2326", "http://www.apps.ietf.org/rfc/rfc2326.html", "real time streaming protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "tip", "2371", "http://www.apps.ietf.org/rfc/rfc2371.html", "Transaction Internet Protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "pop", "2384", "http://www.apps.ietf.org/rfc/rfc2384.html", "Post Office Protocol v3", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "data", "2397", "http://www.apps.ietf.org/rfc/rfc2397.html", "data", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "dav", "2518", "http://www.apps.ietf.org/rfc/rfc2518.html", "dav", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "opaquelocktoken", "2518", "http://www.apps.ietf.org/rfc/rfc2518.html", "opaquelocktoken", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "sip", "3261", "http://www.apps.ietf.org/rfc/rfc3261.html", "session initiation protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "sips", "3261", "http://www.apps.ietf.org/rfc/rfc3261.html", "secure session intitiaion protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "tel", "2806", "http://www.apps.ietf.org/rfc/rfc2806.html", "telephone", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "fax", "2806", "http://www.apps.ietf.org/rfc/rfc2806.html", "fax", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "modem", "2806", "http://www.apps.ietf.org/rfc/rfc2806.html", "modem", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "soap.beep", "3288", "http://www.apps.ietf.org/rfc/rfc3288.html", "soap.beep", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "soap.beeps", "3288", "http://www.apps.ietf.org/rfc/rfc3288.html", "soap.beeps", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "xmlrpc.beep", "3529", "http://www.apps.ietf.org/rfc/rfc3529.html", "xmlrpc.beep", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "xmlrpc.beeps", "3529", "http://www.apps.ietf.org/rfc/rfc3529.html", "xmlrpc.beeps", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "urn", "2141", "http://www.apps.ietf.org/rfc/rfc2141.html", "Uniform Resource Names", "", new String[]{ "urn:x-hp:foo/bar", "urn:urn:foo", "urn://foo", "urn:foo:bar?query", "urn:foo:ff~", }, new String[]{ "urn:x-hp:foo\u00E9", "urn:urn-1:foo", } ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2", "All URNs have the following syntax (phrases enclosed in quotes are REQUIRED):"+ "\n"+ "<URN> ::= \"urn:\" <NID> \":\" <NSS>\n"+ "", "All URNs have the following syntax (phrases enclosed in quotes are REQUIRED):"+ "</p><pre>\n"+ "<URN> ::= \"urn:\" <NID> \":\" <NSS>\n"+ "</pre>"+ "<p>" ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.1", ""+ "\n"+ "<NID> ::= <let-num> [ 1,31<let-num-hyp> ]\n"+ "\n"+ "<let-num-hyp> ::= <upper> | <lower> | <number> | \"-\"\n"+ "\n"+ "<let-num> ::= <upper> | <lower> | <number>\n"+ "", ""+ "</p><pre>\n"+ "<NID> ::= <let-num> [ 1,31<let-num-hyp> ]\n"+ "\n"+ "<let-num-hyp> ::= <upper> | <lower> | <number> | \"-\"\n"+ "\n"+ "<let-num> ::= <upper> | <lower> | <number>\n"+ "</pre>"+ "<p>" ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.2", ""+ "\n"+ "<NSS> ::= 1*<URN chars>\n"+ "\n"+ "<URN chars> ::= <trans> | \"%\" <hex> <hex>\n"+ "\n"+ "<trans> ::= <upper> | <lower> | <number> | <other> | <reserved>\n"+ "\n"+ "<other> ::= \"(\" | \")\" | \"+\" | \",\" | \"-\" | \".\" |\n"+ " \":\" | \"=\" | \"@\" | \";\" | \"$\" |\n"+ " \"_\" | \"!\" | \"*\" | \"'\"\n"+ "", ""+ "</p><pre>\n"+ "<NSS> ::= 1*<URN chars>\n"+ "\n"+ "<URN chars> ::= <trans> | \"%\" <hex> <hex>\n"+ "\n"+ "<trans> ::= <upper> | <lower> | <number> | <other> | <reserved>\n"+ "\n"+ "<other> ::= \"(\" | \")\" | \"+\" | \",\" | \"-\" | \".\" |\n"+ " \":\" | \"=\" | \"@\" | \";\" | \"$\" |\n"+ " \"_\" | \"!\" | \"*\" | \"'\"\n"+ "</pre>"+ "<p>" ); spec .addDefinition( "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.3.2", "RFC 1630 [2] reserves the characters \"/\", \"?\", and \"#\" for particular purposes. The URN-WG has not yet debated the applicability and precise semantics of those purposes as applied to URNs. Therefore, these characters are RESERVED for future developments. Namespace developers SHOULD NOT use these characters in unencoded form, but rather use the appropriate %-encoding for each character.", "RFC 1630 [2] reserves the characters \"/\", \"?\", and \"#\" for particular purposes. The URN-WG has not yet debated the applicability and precise semantics of those purposes as applied to URNs. Therefore, these characters are RESERVED for future developments. Namespace developers SHOULD NOT use these characters in unencoded form, but rather use the appropriate %-encoding for each character." ); spec.prohibit( IRIComponents.AUTHORITY ); spec.prohibit( IRIComponents.QUERY ); spec.require( IRIComponents.PATH ); spec.setPattern(PATH, "(?![uU][rR][nN]:)[a-zA-Z0-9][-a-zA-Z0-9]{1,31}:[^/~]+" ); spec.setReserved(PATH,"/~"); spec = new SchemeSpecification( "go", "3368", "http://www.apps.ietf.org/rfc/rfc3368.html", "go", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "h323", "3508", "http://www.apps.ietf.org/rfc/rfc3508.html", "H.323", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "ipp", "3510", "http://www.apps.ietf.org/rfc/rfc3510.html", "Internet Printing Protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "tftp", "3617", "http://www.apps.ietf.org/rfc/rfc3617.html", "Trivial File Transfer Protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "mupdate", "3656", "http://www.apps.ietf.org/rfc/rfc3656.html", "Mailbox Update (MUPDATE) Protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "pres", "3859", "http://www.apps.ietf.org/rfc/rfc3859.html", "Presence", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "im", "3860", "http://www.apps.ietf.org/rfc/rfc3860.html", "Instant Messaging", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "mtqp", "3887", "http://www.apps.ietf.org/rfc/rfc3887.html", "Message Tracking Query Protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "iris.beep", "3983", "http://www.apps.ietf.org/rfc/rfc3983.html", "iris.beep", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "dict", "2229", "http://www.apps.ietf.org/rfc/rfc2229.html", "dictionary service protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "snmp", "4088", "http://www.ietf.org/rfc/rfc4088.txt", "Simple Network Management Protocol", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "crid", "4078", "http://www.ietf.org/rfc/rfc4078.txt", "TV-Anytime Content Reference Identifier", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "tag", "4151", "http://www.ietf.org/rfc/rfc4151.txt", "tag", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "afs", "", "http://www.iana.org/assignments/uri-schemes", "Andrew File System global file names", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "tn3270", "", "http://www.iana.org/assignments/uri-schemes", "Interactive 3270 emulation sessions", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "mailserver", "", "http://www.iana.org/assignments/uri-schemes", "Access to data available from mail servers", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "dns", "", "http://www.iana.org/assignments/uri-schemes", "Domain Name System", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "info", "", "http://www.iana.org/assignments/uri-schemes", "Information Assets with Identifiers in Public Namespaces", "", new String[]{ }, new String[]{ } ); spec = new SchemeSpecification( "ldap", "", "http://www.iana.org/assignments/uri-schemes", "Lightweight Directory Access Protocol", "", new String[]{ }, new String[]{ } ); new ViolationCodeInfo( ILLEGAL_CHARACTER, "ILLEGAL_CHARACTER", "The character violates the grammar rules for URIs/IRIs.", "<p>The character violates the grammar rules for URIs/IRIs.</p>", 0, new InSpec[]{ new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html#page-49" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html#sec-2.2" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "ht$tp://example.org/foo", }, new String[]{ }, false ); new ViolationCodeInfo( PERCENT_ENCODING_SHOULD_BE_UPPERCASE, "PERCENT_ENCODING_SHOULD_BE_UPPERCASE", "Percent-escape sequences should use uppercase.", "<p>Percent-escape sequences should use uppercase.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1", "URI producers and normalizers should use *uppercase* hexadecimal digits for all percent-encodings.", "<p>URI producers and normalizers should use"+ " <em>uppercase</em> "+ "hexadecimal digits for all percent-encodings.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org/foo%c3%80", }, new String[]{ }, false ); new ViolationCodeInfo( SUPERFLUOUS_NON_ASCII_PERCENT_ENCODING, "SUPERFLUOUS_NON_ASCII_PERCENT_ENCODING", "Percent-escape sequences should not be used unnecessarily.", "<p>Percent-escape sequences should not be used unnecessarily.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.2", "URI-to-IRI conversion removes percent-encodings", "<p>URI-to-IRI conversion removes percent-encodings</p>" ), }, new String[]{ "http://example.org/foo%C3%A9r", }, new String[]{ }, true|| false ); new ViolationCodeInfo( SUPERFLUOUS_ASCII_PERCENT_ENCODING, "SUPERFLUOUS_ASCII_PERCENT_ENCODING", "Percent-escape sequences should not be used unnecessarily.", "<p>Percent-escape sequences should not be used unnecessarily.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.3", "For consistency, percent-encoded octets in the ranges of ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D), period (%2E), underscore (%5F), or tilde (%7E) should not be created by URI producers", "<p>For consistency, percent-encoded octets in the ranges of ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D), period (%2E), underscore (%5F), or tilde (%7E) should not be created by URI producers</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org/foo%5Fb%61r", }, new String[]{ }, true|| false ); new ViolationCodeInfo( UNWISE_CHARACTER, "UNWISE_CHARACTER", "The character matches no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs.", "<p>The character matches no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#page-13", "Systems accepting IRIs MAY also deal with the printable characters in US-ASCII that are not allowed in URIs, namely \"<\", \">\", '\"', space, \"{\", \"}\", \"|\", \"\\\", \"^\", and \"`\", in step 2 above. If these characters are found but are not converted, then the conversion SHOULD fail.", "<p>Systems accepting IRIs MAY also deal with the printable characters in US-ASCII that are not allowed in URIs, namely \"<\", \">\", '\"', space, \"{\", \"}\", \"|\", \"\\\", \"^\", and \"`\", in step 2 above. If these characters are found but are not converted, then the conversion SHOULD fail.</p>" ), new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html#page-49" ), }, new String[]{ "http://example.org/fo|o", "http://example.org/fo<o", "http://example.org/fo>o", "http://example.org/fo\"o", "http://example.org/fo`o", }, new String[]{ }, false ); new ViolationCodeInfo( CONTROL_CHARACTER, "CONTROL_CHARACTER", "Control characters are not allowed in URIs or RDF URI References.", "<p>Control characters are not allowed in URIs or RDF URI References.</p>", 0, new InSpec[]{ new FromSpec_iri( "RDF", -1, "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref", "A URI reference within an RDF graph (an RDF URI reference) is a Unicode string [UNICODE] that: (0)does not contain any control characters ( #x00 - #x1F, #x7F-#x9F) ", "<p>A URI reference within an RDF graph (an RDF URI reference) is a Unicode string [UNICODE] that:"+ "</p><ul>"+ " <li>does not contain any control characters ( #x00 - #x1F, #x7F-#x9F)</li> "+ "</ul>"+ "<p></p>" ), new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html", ""+ "\n"+ "ucschar = %xA0-D7FF / %xF900-FDCF / %xFDF0-FFEF\n"+ " / %x10000-1FFFD / %x20000-2FFFD / %x30000-3FFFD\n"+ " / %x40000-4FFFD / %x50000-5FFFD / %x60000-6FFFD\n"+ " / %x70000-7FFFD / %x80000-8FFFD / %x90000-9FFFD\n"+ " / %xA0000-AFFFD / %xB0000-BFFFD / %xC0000-CFFFD\n"+ " / %xD0000-DFFFD / %xE1000-EFFFD\n"+ "", "<p>"+ "</p><pre>\n"+ "ucschar = %xA0-D7FF / %xF900-FDCF / %xFDF0-FFEF\n"+ " / %x10000-1FFFD / %x20000-2FFFD / %x30000-3FFFD\n"+ " / %x40000-4FFFD / %x50000-5FFFD / %x60000-6FFFD\n"+ " / %x70000-7FFFD / %x80000-8FFFD / %x90000-9FFFD\n"+ " / %xA0000-AFFFD / %xB0000-BFFFD / %xC0000-CFFFD\n"+ " / %xD0000-DFFFD / %xE1000-EFFFD\n"+ "</pre>"+ "<p></p>" ), new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html" ), }, new String[]{ "http://example.org/fo\u007Fo", "http://example.org/fo\u0085o", "http://example.org/fo\u0009o", "http://example.org/fo\u0001o", }, new String[]{ }, false ); new ViolationCodeInfo( NON_XML_CHARACTER, "NON_XML_CHARACTER", "The character is not legal in XML.", "<p>The character is not legal in XML.</p>", 0, new InSpec[]{ new FromSpec_iri( "XML", -1, "http://www.w3.org/TR/2004/REC-xml-20040204/#NT-Char", "Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]", "<p>Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]</p>" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org/foo\u0001", }, new String[]{ }, false ); new ViolationCodeInfo( DISCOURAGED_XML_CHARACTER, "DISCOURAGED_XML_CHARACTER", "The character is discouraged in XML documents.", "<p>The character is discouraged in XML documents.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "XML", -1, "http://www.w3.org/TR/2004/REC-xml-20040204/#char32", "Document authors are encouraged to avoid \"compatibility characters\", as defined in section 6.8 of [Unicode] (see also D21 in section 3.6 of [Unicode3]). The characters defined in the following ranges are also discouraged. They are either control characters or permanently undefined Unicode characters: [#x7F-#x84], [#x86-#x9F], [#xFDD0-#xFDDF],", "<p>Document authors are encouraged to avoid \"compatibility characters\", as defined in section 6.8 of [Unicode] (see also D21 in section 3.6 of [Unicode3]). The characters defined in the following ranges are also discouraged. They are either control characters or permanently undefined Unicode characters: [#x7F-#x84], [#x86-#x9F], [#xFDD0-#xFDDF],</p>" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org/foo\u0080", }, new String[]{ }, false ); new ViolationCodeInfo( NON_INITIAL_DOT_SEGMENT, "NON_INITIAL_DOT_SEGMENT", "The path contains a segment /../ not at the beginning of a relative reference, or it contains a /./ These should be removed.", "<p>The path contains a segment /../ not at the beginning of a relative reference, or it contains a /./ These should be removed.</p>", 0|Force.minting|Force.security, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-6.2.2.3", "The complete path segments \".\" and \"..\" are intended *only* for use within relative references", "<p>The complete path segments \".\" and \"..\" are intended"+ " <em>only</em> "+ "for use within relative references</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org/../foo", "http://example.org/foo/../foo", "http://example.org/foo/..", "http://example.org/foo/./foo", "http://example.org/./foo", "http://example.org/foo/.", }, new String[]{ }, false ); new ViolationCodeInfo( EMPTY_SCHEME, "EMPTY_SCHEME", "The scheme component is empty.", "<p>The scheme component is empty.</p>", 0, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1", "Scheme names consist of a sequence of characters *beginning with a letter* and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").", "<p>Scheme names consist of a sequence of characters"+ " <em>beginning with a letter</em> "+ "and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "://example.org/foo", }, new String[]{ }, false ); new ViolationCodeInfo( SCHEME_MUST_START_WITH_LETTER, "SCHEME_MUST_START_WITH_LETTER", "The scheme component must start with a letter.", "<p>The scheme component must start with a letter.</p>", 0, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1", "Scheme names consist of a sequence of characters *beginning with a letter* and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").", "<p>Scheme names consist of a sequence of characters"+ " <em>beginning with a letter</em> "+ "and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "007://example.org/foo", }, new String[]{ }, false ); new ViolationCodeInfo( LOWERCASE_PREFERRED, "LOWERCASE_PREFERRED", "lowercase is preferred in this component", "<p>lowercase is preferred in this component</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "URI", SCHEME, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1", "An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow \"HTTP\" as well as \"http\") for the sake of robustness but should only produce lowercase scheme names for consistency.", "<p>An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow \"HTTP\" as well as \"http\") for the sake of robustness but should only produce lowercase scheme names for consistency.</p>" ), new FromSpec_iri( "URI", HOST, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "Although host is case-insensitive, producers and normalizers should use *lowercase for registered names* and hexadecimal addresses for the sake of uniformity, while only using uppercase letters for percent-encodings.", "<p>Although host is case-insensitive, producers and normalizers should use"+ " <em>lowercase for registered names</em> "+ "and hexadecimal addresses for the sake of uniformity, while only using uppercase letters for percent-encodings.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "HTTP://example.org/foo", "http://eXamPle.org/foo", }, new String[]{ }, false ); new ViolationCodeInfo( PORT_SHOULD_NOT_BE_EMPTY, "PORT_SHOULD_NOT_BE_EMPTY", "The colon introducing an empty port component should be omitted entirely, or a port number should be specified.", "<p>The colon introducing an empty port component should be omitted entirely, or a port number should be specified.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "URI producers and normalizers should omit the port component *and its \":\" delimiter* if port is empty", "<p>URI producers and normalizers should omit the port component"+ " <em>and its \":\" delimiter</em> "+ "if port is empty</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org:/foo", }, new String[]{ }, false ); new ViolationCodeInfo( DEFAULT_PORT_SHOULD_BE_OMITTED, "DEFAULT_PORT_SHOULD_BE_OMITTED", "If the port is the default one for the scheme it should be omitted.", "<p>If the port is the default one for the scheme it should be omitted.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "URI producers and normalizers should omit the port component and its \":\" delimiter if port is empty or if its value would be the *same as that of the scheme's default.* ", "<p>URI producers and normalizers should omit the port component and its \":\" delimiter if port is empty or if its value would be the"+ " <em>same as that of the scheme's default.</em> "+ "</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org:80/foo", }, new String[]{ }, false ); new ViolationCodeInfo( PORT_SHOULD_NOT_BE_WELL_KNOWN, "PORT_SHOULD_NOT_BE_WELL_KNOWN", "Ports under 1024 should be accessed using the appropriate scheme name.", "<p>Ports under 1024 should be accessed using the appropriate scheme name.</p>", 0|Force.security, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-7.2", "Applications should prevent dereference of a URI that specifies a TCP port number within the \"well-known port\" range *(0 - 1023)* unless the protocol being used to dereference that URI is compatible with the protocol expected on that well-known port.", "<p>Applications should prevent dereference of a URI that specifies a TCP port number within the \"well-known port\" range"+ " <em>(0 - 1023)</em> "+ "unless the protocol being used to dereference that URI is compatible with the protocol expected on that well-known port.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org:180/foo", }, new String[]{ }, false ); new ViolationCodeInfo( PORT_SHOULD_NOT_START_IN_ZERO, "PORT_SHOULD_NOT_START_IN_ZERO", "Leading zeros in the port number should be omitted. This is an added feature of this implementation, not mandated by any standard.", "<p>Leading zeros in the port number should be omitted. This is an added feature of this implementation, not mandated by any standard.</p>", 0|Force.minting, new InSpec[]{ new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org:08080/foo", }, new String[]{ }, false ); new ViolationCodeInfo( BIDI_FORMATTING_CHARACTER, "BIDI_FORMATTING_CHARACTER", "A prohibited bi-directional control character was found.", "<p>A prohibited bi-directional control character was found.</p>", 0, new InSpec[]{ new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.1", "IRIs MUST NOT contain bidirectional formatting characters (LRM, RLM, LRE, RLE, LRO, RLO, and PDF).", "<p>IRIs MUST NOT contain bidirectional formatting characters (LRM, RLM, LRE, RLE, LRO, RLO, and PDF).</p>" ), }, new String[]{ "http://example.org/Andr\u202Abar", "http://example.org/Andr\u202Bbar", "http://example.org/Andr\u202Cbar", "http://example.org/Andr\u202Dbar", "http://example.org/Andr\u202Ebar", "http://example.org/Andr\u200Ebar", "http://example.org/Andr\u200Fbar", }, new String[]{ }, true|| false ); new ViolationCodeInfo( WHITESPACE, "WHITESPACE", "A single whitespace character. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs.", "<p>A single whitespace character. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs.</p>", 0, new InSpec[]{ new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ "http://example.org/ foo", "file:///Program Files", }, new String[]{ }, false ); new ViolationCodeInfo( DOUBLE_WHITESPACE, "DOUBLE_WHITESPACE", "Either two or more consecutive whitespace characters, or leading or trailing whitespace. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, but not XML Schema anyURIs.", "<p>Either two or more consecutive whitespace characters, or leading or trailing whitespace. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, but not XML Schema anyURIs.</p>", 0, new InSpec[]{ new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://example.org/ foo", "file:///Program Files", "file:///TabBar ", " rel-with-initial-space", }, new String[]{ }, false ); new ViolationCodeInfo( NOT_XML_SCHEMA_WHITESPACE, "NOT_XML_SCHEMA_WHITESPACE", "Whitespace characters match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, and XML system identifiers. However, tab and new line characters, and consecutive space characters cannot occur in XML Schema anyURIs.", "<p>Whitespace characters match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, and XML system identifiers. However, tab and new line characters, and consecutive space characters cannot occur in XML Schema anyURIs.</p>", 0, new InSpec[]{ new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromSpec_iri( "Schema", -1, "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#schema", ""+ "\n"+ "<xs:simpleType name=\"anyURI\" id=\"anyURI\">\n"+ " [...]\n"+ " <xs:restriction base=\"xs:anySimpleType\">\n"+ " <xs:whiteSpace fixed=\"true\" value=\"collapse\" id=\"anyURI.whiteSpace\"/>\n"+ "\n"+ " </xs:restriction>\n"+ "</xs:simpleType>\n"+ "", "<p>"+ "</p><pre>\n"+ "<xs:simpleType name=\"anyURI\" id=\"anyURI\">\n"+ " [...]\n"+ " <xs:restriction base=\"xs:anySimpleType\">\n"+ " <xs:whiteSpace fixed=\"true\" value=\"collapse\" id=\"anyURI.whiteSpace\"/>\n"+ "\n"+ " </xs:restriction>\n"+ "</xs:simpleType>\n"+ "</pre>"+ "<p></p>" ), }, new String[]{ "file:///Tab\u0009Bar", "file:///Tab\nBar", "file:///Tab\rBar", }, new String[]{ }, false ); new ViolationCodeInfo( DOUBLE_DASH_IN_REG_NAME, "DOUBLE_DASH_IN_REG_NAME", new String[]{ "http://foo--bar//", }, new String[]{ }, true|| false ); new ViolationCodeInfo( SCHEME_INCLUDES_DASH, "SCHEME_INCLUDES_DASH", new String[]{ "ht-tp://foo.bar//", "-http://foo.bar//", "http-://foo.bar//", }, new String[]{ }, true|| false ); new ViolationCodeInfo( NON_URI_CHARACTER, "NON_URI_CHARACTER", new String[]{ "http://foo-bar//̳a", "http://foo-b̳ar//", }, new String[]{ }, true|| false ); new ViolationCodeInfo( PERCENT_20, "PERCENT_20", new String[]{ "http://foo-bar//%20a", }, new String[]{ }, true|| false ); new ViolationCodeInfo( PERCENT, "PERCENT", new String[]{ "http://foo-bar//%AAa", }, new String[]{ }, true|| false ); new ViolationCodeInfo( IP_V6_OR_FUTURE_ADDRESS_SYNTAX, "IP_V6_OR_FUTURE_ADDRESS_SYNTAX", "A syntax violation was detected in an IP V6 (or future) address.", "<p>A syntax violation was detected in an IP V6 (or future) address.</p>", 0, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", ""+ "\n"+ "IP-literal = \"[\" ( IPv6address / IPvFuture ) \"]\"\n"+ "IPvFuture = \"v\" 1*HEXDIG \".\" 1*( unreserved / sub-delims / \":\" )\n"+ "IPv6address = 6( h16 \":\" ) ls32\n"+ " / \"::\" 5( h16 \":\" ) ls32\n"+ " / [ h16 ] \"::\" 4( h16 \":\" ) ls32\n"+ " / [ *1( h16 \":\" ) h16 ] \"::\" 3( h16 \":\" ) ls32\n"+ " / [ *2( h16 \":\" ) h16 ] \"::\" 2( h16 \":\" ) ls32\n"+ " / [ *3( h16 \":\" ) h16 ] \"::\" h16 \":\" ls32\n"+ " / [ *4( h16 \":\" ) h16 ] \"::\" ls32\n"+ " / [ *5( h16 \":\" ) h16 ] \"::\" h16\n"+ " / [ *6( h16 \":\" ) h16 ] \"::\"\n"+ "\n"+ "ls32 = ( h16 \":\" h16 ) / IPv4address\n"+ " ; least-significant 32 bits of address\n"+ "h16 = 1*4HEXDIG \n"+ " ; 16 bits of address represented in hexadecimal\n"+ "", "<p>"+ "</p><pre>\n"+ "IP-literal = \"[\" ( IPv6address / IPvFuture ) \"]\"\n"+ "IPvFuture = \"v\" 1*HEXDIG \".\" 1*( unreserved / sub-delims / \":\" )\n"+ "IPv6address = 6( h16 \":\" ) ls32\n"+ " / \"::\" 5( h16 \":\" ) ls32\n"+ " / [ h16 ] \"::\" 4( h16 \":\" ) ls32\n"+ " / [ *1( h16 \":\" ) h16 ] \"::\" 3( h16 \":\" ) ls32\n"+ " / [ *2( h16 \":\" ) h16 ] \"::\" 2( h16 \":\" ) ls32\n"+ " / [ *3( h16 \":\" ) h16 ] \"::\" h16 \":\" ls32\n"+ " / [ *4( h16 \":\" ) h16 ] \"::\" ls32\n"+ " / [ *5( h16 \":\" ) h16 ] \"::\" h16\n"+ " / [ *6( h16 \":\" ) h16 ] \"::\"\n"+ "\n"+ "ls32 = ( h16 \":\" h16 ) / IPv4address\n"+ " ; least-significant 32 bits of address\n"+ "h16 = 1*4HEXDIG \n"+ " ; 16 bits of address represented in hexadecimal\n"+ "</pre>"+ "<p></p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://[/", "ldap://[20015:db8::7]/c=GB?objectClass?one", "ldap://[2001:db8:::7]/c=GB?objectClass?one", }, new String[]{ }, false ); new ViolationCodeInfo( IPv6ADDRESS_SHOULD_BE_LOWERCASE, "IPv6ADDRESS_SHOULD_BE_LOWERCASE", "IP version 6 addresses should use lowercase hexadecimal", "<p>IP version 6 addresses should use lowercase hexadecimal</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "Although host is case-insensitive, producers and normalizers *should use lowercase* for registered names and *hexadecimal addresses* for the sake of uniformity", "<p>Although host is case-insensitive, producers and normalizers"+ " <em>should use lowercase</em> "+ "for registered names and"+ " <em>hexadecimal addresses</em> "+ "for the sake of uniformity</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "ldap://[2001:Db8::7]/c=GB?objectClass?one", "ldap://[2001:dB8::7]/c=GB?objectClass?one", }, new String[]{ }, false ); new ViolationCodeInfo( IP_V4_OCTET_RANGE, "IP_V4_OCTET_RANGE", "A host entry consists of four numbers, but they are not in the range 0-255, or have leading zeros.", "<p>A host entry consists of four numbers, but they are not in the range 0-255, or have leading zeros.</p>", 0, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "A host identified by an IPv4 literal address is represented in dotted-decimal notation (a sequence of *four decimal numbers* in the range *0 to 255* , separated by \".\"),", "<p>A host identified by an IPv4 literal address is represented in dotted-decimal notation (a sequence of"+ " <em>four decimal numbers</em> "+ "in the range"+ " <em>0 to 255</em> "+ ", separated by \".\"),</p>" ), new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", ""+ "\n"+ "dec-octet = DIGIT ; 0-9\n"+ " / %x31-39 DIGIT ; 10-99\n"+ " / \"1\" 2DIGIT ; 100-199\n"+ " / \"2\" %x30-34 DIGIT ; 200-249\n"+ " / \"25\" %x30-35 ; 250-255\n"+ "", "<p>"+ "</p><pre>\n"+ "dec-octet = DIGIT ; 0-9\n"+ " / %x31-39 DIGIT ; 10-99\n"+ " / \"1\" 2DIGIT ; 100-199\n"+ " / \"2\" %x30-34 DIGIT ; 200-249\n"+ " / \"25\" %x30-35 ; 250-255\n"+ "</pre>"+ "<p></p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "ldap://155.00.55.102/c=GB?objectClass?one", "ldap://20.256.20.20/c=GB?objectClass?one", "ldap://20.1000.20.20/c=GB?objectClass?one", "ldap://20.010.20.20/c=GB?objectClass?one", }, new String[]{ }, false ); new ViolationCodeInfo( NOT_DNS_NAME, "NOT_DNS_NAME", "The host component did not meet the restrictions on DNS names.", "<p>The host component did not meet the restrictions on DNS names.</p>", 0|Force.dns, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "URI producers should use names that *conform to the DNS syntax* , even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length.", "<p>URI producers should use names that"+ " <em>conform to the DNS syntax</em> "+ ", even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "ldap://foo$/c=GB?objectClass?one", "http://foo.example.$org/", }, new String[]{ }, false ); new ViolationCodeInfo( USE_PUNYCODE_NOT_PERCENTS, "USE_PUNYCODE_NOT_PERCENTS", "The host component used percent encoding, where punycode is preferred.", "<p>The host component used percent encoding, where punycode is preferred.</p>", 0|Force.minting|Force.dns, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.", "<p>URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "ftp://andr%C3%A9.example.org/", }, new String[]{ }, false ); new ViolationCodeInfo( ILLEGAL_PERCENT_ENCODING, "ILLEGAL_PERCENT_ENCODING", "The host component a percent occurred without two following hexadecimal digits.", "<p>The host component a percent occurred without two following hexadecimal digits.</p>", 0, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1", "A percent-encoded octet is encoded as a character triplet, consisting of the percent character \"%\" followed by the two hexadecimal digits representing that octet's numeric value.", "<p>A percent-encoded octet is encoded as a character triplet, consisting of the percent character \"%\" followed by the two hexadecimal digits representing that octet's numeric value.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "ftp://andr%%A9.example.org/", "ftp://andr%.example.org/", "ftp://andre.example.org/%", "ftp://andre.example.org/%A", "ftp://andre.example.org/%A?", "ftp://andre.example.org/%A#", }, new String[]{ }, false ); new ViolationCodeInfo( ACE_PREFIX, "ACE_PREFIX", new String[]{ }, new String[]{ }, true|| false ); new ViolationCodeInfo( LONE_SURROGATE, "LONE_SURROGATE", "A unicode surrogate character that is not of a surrogate pair.", "<p>A unicode surrogate character that is not of a surrogate pair.</p>", 0, new InSpec[]{ }, new String[]{ "http:/foo/p\uD800", }, new String[]{ }, false ); new ViolationCodeInfo( DNS_LABEL_DASH_START_OR_END, "DNS_LABEL_DASH_START_OR_END", "A DNS name had a - at the beginning or end.", "<p>A DNS name had a - at the beginning or end.</p>", 0|Force.dns, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "Such a name consists of a sequence of domain labels separated by \".\", each domain label starting and ending with an alphanumeric character and possibly also containing \"-\" characters.", "<p>Such a name consists of a sequence of domain labels separated by \".\", each domain label starting and ending with an alphanumeric character and possibly also containing \"-\" characters.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "ldap://-foo/c=GB?objectClass?one", "http://foo.example.org-/", "http://foo.example.org--/", "http://--foo.example.org/", "http://-fo-o.example.org/", }, new String[]{ }, false ); new ViolationCodeInfo( BAD_IDN_UNASSIGNED_CHARS, "BAD_IDN_UNASSIGNED_CHARS", "Characters used in the IRI were unassigned in the version of Unicode known by this system. They may have been assigned since.", "<p>Characters used in the IRI were unassigned in the version of Unicode known by this system. They may have been assigned since.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.", "<p>When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.</p>" ), new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1", "Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.", "<p>Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.</p>" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://foo.example\u0221.org/", }, new String[]{ }, false ); new ViolationCodeInfo( BAD_IDN, "BAD_IDN", "The Internationalized Domain Name check failed.", "<p>The Internationalized Domain Name check failed.</p>", 0, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2", "When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.", "<p>When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.</p>" ), new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1", "Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.", "<p>Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.</p>" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://--foo.example.org/", "http://xn--andr--ep-.example.org/", "http://xn.example.\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333/", }, new String[]{ }, false ); new ViolationCodeInfo( HAS_PASSWORD, "HAS_PASSWORD", "Including passwords in URIs is deprecated.", "<p>Including passwords in URIs is deprecated.</p>", 0|Force.must|Force.security, new InSpec[]{ new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1", "Use of the format \"user:password\" in the userinfo field is deprecated.", "<p>Use of the format \"user:password\" in the userinfo field is deprecated.</p>" ), new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1", "Applications may choose to ignore or reject such data when it is received as part of a reference and should reject the storage of such data in unencrypted form. The passing of authentication information in clear text has proven to be a security risk in almost every case where it has been used.", "<p>Applications may choose to ignore or reject such data when it is received as part of a reference and should reject the storage of such data in unencrypted form. The passing of authentication information in clear text has proven to be a security risk in almost every case where it has been used.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "http://user:pass@example.org/", }, new String[]{ }, false ); new ViolationCodeInfo( DISCOURAGED_IRI_CHARACTER, "DISCOURAGED_IRI_CHARACTER", "Certain characters are discouraged in IRIs.", "<p>Certain characters are discouraged in IRIs.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-6.1", "The UCS contains many areas of characters for which there are strong visual look-alikes. Because of the likelihood of transcription errors, these also should be avoided. This includes the full-width equivalents of Latin characters, half-width Katakana characters for Japanese, and many others. It also includes many look-alikes of \"space\", \"delims\", and \"unwise\", characters excluded in [RFC3491].", "<p>The UCS contains many areas of characters for which there are strong visual look-alikes. Because of the likelihood of transcription errors, these also should be avoided. This includes the full-width equivalents of Latin characters, half-width Katakana characters for Japanese, and many others. It also includes many look-alikes of \"space\", \"delims\", and \"unwise\", characters excluded in [RFC3491].</p>" ), }, new String[]{ "http://example.org/\u2000en-quad", "http://example.org/\u205Fmedium-mathematical-space", "http://example\uFF95.org/", "http://example\uFF47.org/", }, new String[]{ }, true|| false ); new ViolationCodeInfo( BAD_BIDI_SUBCOMPONENT, "BAD_BIDI_SUBCOMPONENT", "There are restrictions on bidi characters in subcomponents of IRIs", "<p>There are restrictions on bidi characters in subcomponents of IRIs</p>", 0|Force.should, new InSpec[]{ new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.2", " (0)A component SHOULD NOT use both right-to-left and left-to-right characters. (1)A component using right-to-left characters SHOULD start and end with right-to-left characters. ", "<p>"+ "</p><ol>"+ " <li>A component SHOULD NOT use both right-to-left and left-to-right characters.</li> "+ ""+ " <li>A component using right-to-left characters SHOULD start and end with right-to-left characters.</li> "+ "</ol>"+ "<p></p>" ), }, new String[]{ }, new String[]{ }, true|| false ); new ViolationCodeInfo( DNS_LENGTH_LIMIT, "DNS_LENGTH_LIMIT", new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( DNS_LABEL_LENGTH_LIMIT, "DNS_LABEL_LENGTH_LIMIT", new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( NOT_UTF8_ESCAPE, "NOT_UTF8_ESCAPE", new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( NOT_UTF8_ESCAPE_IN_HOST, "NOT_UTF8_ESCAPE_IN_HOST", new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( BAD_DOT_IN_IDN, "BAD_DOT_IN_IDN", new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( UNREGISTERED_IANA_SCHEME, "UNREGISTERED_IANA_SCHEME", "The scheme name does not have a \"-\" in it, but is not in the IANA registry. (Last updated from the registry January 2006)", "<p>The scheme name does not have a \"-\" in it, but is not in the IANA registry. (Last updated from the registry January 2006)</p>", 0, new InSpec[]{ new FromSpec_other( "URL_Registratrion", -1, "http://www.apps.ietf.org/rfc/rfc2717.html#sec-", "", "<p></p>" ), new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2", "The NAMES of schemes registered in the IETF tree MUST NOT contain the dash (also known as the hyphen and minus sign) character ('-') USASCII value 2Dh. Use of this character can cause confusion with schemes registered in alternative trees (see section 3.3).", "<p>The NAMES of schemes registered in the IETF tree MUST NOT contain the dash (also known as the hyphen and minus sign) character ('-') USASCII value 2Dh. Use of this character can cause confusion with schemes registered in alternative trees (see section 3.3).</p>" ), new FromSpec_iri( "URI", -1, "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.3", "The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:"+ "\n"+ " <prefix>'-'<tree-specific identifier>\n"+ "For instance, the \"foo\" tree would allow creation of scheme names of the form: \"foo-blahblah:\" and \"foo-bar:\", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.", "<p>The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:"+ "</p><pre>\n"+ " <prefix>'-'<tree-specific identifier>\n"+ "</pre>"+ "<p>For instance, the \"foo\" tree would allow creation of scheme names of the form: \"foo-blahblah:\" and \"foo-bar:\", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.</p>" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "foo://example.org/bar", }, new String[]{ }, false ); new ViolationCodeInfo( UNREGISTERED_NONIETF_SCHEME_TREE, "UNREGISTERED_NONIETF_SCHEME_TREE", "The scheme name has a \"-\" in it, but it does not start in \"x-\" and the prefix is not known as the prefix of an alternative tree for URI schemes.", "<p>The scheme name has a \"-\" in it, but it does not start in \"x-\" and the prefix is not known as the prefix of an alternative tree for URI schemes.</p>", 0, new InSpec[]{ new FromSpec_other( "URL_Registratrion", -1, "http://www.apps.ietf.org/rfc/rfc2717.html#sec-3.3", "The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:"+ "\n"+ " <prefix>'-'<tree-specific identifier>\n"+ "For instance, the \"foo\" tree would allow creation of scheme names of the form: \"foo-blahblah:\" and \"foo-bar:\", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.", "<p>The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:"+ "</p><pre>\n"+ " <prefix>'-'<tree-specific identifier>\n"+ "</pre>"+ "<p>For instance, the \"foo\" tree would allow creation of scheme names of the form: \"foo-blahblah:\" and \"foo-bar:\", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.</p>" ), new FromAlso( "URI", "http://www.apps.ietf.org/rfc/rfc3986.html" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), new FromAlso( "XLink", "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators" ), new FromAlso( "XML", "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid" ), new FromAlso( "RDF", "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref" ), new FromAlso( "Schema", "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI" ), }, new String[]{ "foo-bar://example.org/bar", }, new String[]{ }, false ); new ViolationCodeInfo( NOT_NFC, "NOT_NFC", "The IRI is not in Unicode Normal Form C.", "<p>The IRI is not in Unicode Normal Form C.</p>", 0|Force.should, new InSpec[]{ new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-5.3.2.2", "To avoid false negatives and problems with transcoding, IRIs SHOULD be created by using NFC.", "<p>To avoid false negatives and problems with transcoding, IRIs SHOULD be created by using NFC.</p>" ), }, new String[]{ "http://example.org/#Andre\u0301", }, new String[]{ }, true|| false ); new ViolationCodeInfo( NOT_NFKC, "NOT_NFKC", "The IRI is not in Unicode Normal Form KC.", "<p>The IRI is not in Unicode Normal Form KC.</p>", 0|Force.minting, new InSpec[]{ new FromSpec_iri( "IRI", -1, "http://www.apps.ietf.org/rfc/rfc3987.html#sec-7.5", "Although there may be exceptions, newly created resource names should generally be in NFKC", "<p>Although there may be exceptions, newly created resource names should generally be in NFKC</p>" ), }, new String[]{ "http://example.org/#Andre\u0301", }, new String[]{ }, true|| false ); new ViolationCodeInfo( DEPRECATED_UNICODE_CHARACTER, "DEPRECATED_UNICODE_CHARACTER", "TODO", "<p>TODO</p>", 0, new InSpec[]{ new FromAlso( "Unicode", "http://www.unicode.org/" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( UNDEFINED_UNICODE_CHARACTER, "UNDEFINED_UNICODE_CHARACTER", "TODO", "<p>TODO</p>", 0, new InSpec[]{ new FromAlso( "Unicode", "http://www.unicode.org/" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( PRIVATE_USE_CHARACTER, "PRIVATE_USE_CHARACTER", "TODO", "<p>TODO</p>", 0, new InSpec[]{ new FromAlso( "Unicode", "http://www.unicode.org/" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( UNICODE_CONTROL_CHARACTER, "UNICODE_CONTROL_CHARACTER", "TODO", "<p>TODO</p>", 0, new InSpec[]{ new FromAlso( "Unicode", "http://www.unicode.org/" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( UNASSIGNED_UNICODE_CHARACTER, "UNASSIGNED_UNICODE_CHARACTER", "The character code is not assigned in the version of Unicode implemented here.", "<p>The character code is not assigned in the version of Unicode implemented here.</p>", 0|Force.minting, new InSpec[]{ new FromAlso( "Unicode", "http://www.unicode.org/" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( MAYBE_NOT_NFC, "MAYBE_NOT_NFC", new String[]{ }, new String[]{ }, true|| false ); new ViolationCodeInfo( MAYBE_NOT_NFKC, "MAYBE_NOT_NFKC", new String[]{ }, new String[]{ }, true|| false ); new ViolationCodeInfo( UNICODE_WHITESPACE, "UNICODE_WHITESPACE", "TODO", "<p>TODO</p>", 0, new InSpec[]{ new FromAlso( "Unicode", "http://www.unicode.org/" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( COMPATIBILITY_CHARACTER, "COMPATIBILITY_CHARACTER", "Bad character", "<p>Bad character</p>", 0, new InSpec[]{ new FromAlso( "Unicode", "http://www.unicode.org/" ), new FromAlso( "IRI", "http://www.apps.ietf.org/rfc/rfc3987.html" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( REQUIRED_COMPONENT_MISSING, "REQUIRED_COMPONENT_MISSING", "A component that is required by the scheme is missing.", "<p>A component that is required by the scheme is missing.</p>", 0, new InSpec[]{ new FromSpec_iri( "RDF", SCHEME, "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref", "representing an *absolute URI* with optional fragment identifier", "<p>representing an"+ " <em>absolute URI</em> "+ "with optional fragment identifier</p>" ), new FromSpec_scheme( "http", HOST, "http://www.apps.ietf.org/rfc/rfc2616.html" ), new FromSpec_scheme( "https", HOST, "http://www.apps.ietf.org/rfc/rfc2818.html" ), new FromSpec_scheme( "ftp", HOST, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "ftpurl = \"ftp://\" login [ \"/\" fpath [ \";type=\" ftptype ]]\n"+ "\n"+ "login = [ user [ \":\" password ] \"@\" ] hostport\n"+ "", "<p>"+ "</p><pre>\n"+ "ftpurl = \"ftp://\" login [ \"/\" fpath [ \";type=\" ftptype ]]\n"+ "\n"+ "login = [ user [ \":\" password ] \"@\" ] hostport\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "news", PATH, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "newsurl = \"news:\" grouppart\n"+ "grouppart = \"*\" | group | article\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "article = 1*[ uchar | \";\" | \"/\" | \"?\" | \":\" | \"&\" | \"=\" ] \"@\" host\n"+ "", "<p>"+ "</p><pre>\n"+ "newsurl = \"news:\" grouppart\n"+ "grouppart = \"*\" | group | article\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "article = 1*[ uchar | \";\" | \"/\" | \"?\" | \":\" | \"&\" | \"=\" ] \"@\" host\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "nntp", HOST, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7" ), new FromSpec_scheme( "file", PATH, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "", "<p>"+ "</p><pre>\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "file", AUTHORITY, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "", "<p>"+ "</p><pre>\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "urn", PATH, "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2", ""+ "\n"+ "<URN> ::= \"urn:\" <NID> \":\" <NSS>\n"+ "", "<p>"+ "</p><pre>\n"+ "<URN> ::= \"urn:\" <NID> \":\" <NSS>\n"+ "</pre>"+ "<p></p>" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( PROHIBITED_COMPONENT_PRESENT, "PROHIBITED_COMPONENT_PRESENT", "A component that is prohibited by the scheme is present.", "<p>A component that is prohibited by the scheme is present.</p>", 0, new InSpec[]{ new FromSpec_iri( "XML", FRAGMENT, "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid", "TODO", "<p>TODO</p>" ), new FromSpec_scheme( "http", USER, "http://www.apps.ietf.org/rfc/rfc2616.html" ), new FromSpec_scheme( "https", USER, "http://www.apps.ietf.org/rfc/rfc2818.html" ), new FromSpec_scheme( "mailto", AUTHORITY, "http://www.apps.ietf.org/rfc/rfc2368.html", ""+ "\n"+ " mailtoURL = \"mailto:\" [ to ] [ headers ]\n"+ " to = #mailbox\n"+ " headers = \"?\" header *( \"&\" header )\n"+ " header = hname \"=\" hvalue\n"+ " hname = *urlc\n"+ " hvalue = *urlc\n"+ "", "<p>"+ "</p><pre>\n"+ " mailtoURL = \"mailto:\" [ to ] [ headers ]\n"+ " to = #mailbox\n"+ " headers = \"?\" header *( \"&\" header )\n"+ " header = hname \"=\" hvalue\n"+ " hname = *urlc\n"+ " hvalue = *urlc\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "news", AUTHORITY, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "newsurl = \"news:\" grouppart\n"+ "grouppart = \"*\" | group | article\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "article = 1*[ uchar | \";\" | \"/\" | \"?\" | \":\" | \"&\" | \"=\" ] \"@\" host\n"+ "", "<p>"+ "</p><pre>\n"+ "newsurl = \"news:\" grouppart\n"+ "grouppart = \"*\" | group | article\n"+ "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+ "article = 1*[ uchar | \";\" | \"/\" | \"?\" | \":\" | \"&\" | \"=\" ] \"@\" host\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "nntp", QUERY, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7" ), new FromSpec_scheme( "nntp", USER, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7" ), new FromSpec_scheme( "file", USER, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "", "<p>"+ "</p><pre>\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "file", PORT, "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5", ""+ "\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "", "<p>"+ "</p><pre>\n"+ "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "urn", AUTHORITY, "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2", ""+ "\n"+ "<URN> ::= \"urn:\" <NID> \":\" <NSS>\n"+ "", "<p>"+ "</p><pre>\n"+ "<URN> ::= \"urn:\" <NID> \":\" <NSS>\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "urn", AUTHORITY, "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.1", ""+ "\n"+ "<NID> ::= <let-num> [ 1,31<let-num-hyp> ]\n"+ "", "<p>"+ "</p><pre>\n"+ "<NID> ::= <let-num> [ 1,31<let-num-hyp> ]\n"+ "</pre>"+ "<p></p>" ), new FromSpec_scheme( "urn", QUERY, "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.3.2" ), }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( SCHEME_REQUIRES_LOWERCASE, "SCHEME_REQUIRES_LOWERCASE", "Some part of the scheme specific syntax requires lowercase.", "<p>Some part of the scheme specific syntax requires lowercase.</p>", 0, new InSpec[]{ }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( SCHEME_PREFERS_LOWERCASE, "SCHEME_PREFERS_LOWERCASE", "Some part of the scheme specific syntax prefers lowercase.", "<p>Some part of the scheme specific syntax prefers lowercase.</p>", 0|Force.minting, new InSpec[]{ }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( SCHEME_PATTERN_MATCH_FAILED, "SCHEME_PATTERN_MATCH_FAILED", "The scheme specific syntax rules are violated.", "<p>The scheme specific syntax rules are violated.</p>", 0, new InSpec[]{ }, new String[]{ }, new String[]{ }, false ); new ViolationCodeInfo( QUERY_IN_LEGACY_SCHEME, "QUERY_IN_LEGACY_SCHEME", new String[]{ }, new String[]{ }, false ); } } /** The character violates the grammar rules for URIs/IRIs. <p>This violates the following specifications: <a href="#ref-URI">[URI]</a> (see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#page-49">here</a>), <a href="#ref-IRI">[IRI]</a> (see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-2.2">section 2.2</a>), <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>ht$tp://example.org/foo</code>></li> </ul> */ int ILLEGAL_CHARACTER = 0; /** Percent-escape sequences should use uppercase. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1">section 2.1</a> </dt> <dd> URI producers and normalizers should use <em>uppercase</em> hexadecimal digits for all percent-encodings. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/foo%c3%80</code>></li> </ul> */ int PERCENT_ENCODING_SHOULD_BE_UPPERCASE = 1; /** Percent-escape sequences should not be used unnecessarily. <p> The IRI specification only weakly suggests that Unicode characters should be used in preference to percent encodings. </p> <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.2">section 3.2</a> </dt> <dd> URI-to-IRI conversion removes percent-encodings </dd> </dl> <p>This violates the <a href= "#ref-IRI">[IRI]</a> specification.</p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/foo%C3%A9r</code>></li> </ul> <p>Unimplemented.</p> */ int SUPERFLUOUS_NON_ASCII_PERCENT_ENCODING = 2; /** Percent-escape sequences should not be used unnecessarily. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.3">section 2.3</a> </dt> <dd> For consistency, percent-encoded octets in the ranges of ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D), period (%2E), underscore (%5F), or tilde (%7E) should not be created by URI producers </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/foo%5Fb%61r</code>></li> </ul> <p>Unimplemented.</p> */ int SUPERFLUOUS_ASCII_PERCENT_ENCODING = 3; /** The character matches no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs. <p> Whitespace is dealt with separately. </p> <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#page-13">here</a> </dt> <dd> Systems accepting IRIs MAY also deal with the printable characters in US-ASCII that are not allowed in URIs, namely "<", ">", '"', space, "{", "}", "|", "\", "^", and "`", in step 2 above. If these characters are found but are not converted, then the conversion SHOULD fail. </dd> </dl> <p>This violates the following specifications: <a href="#ref-IRI">[IRI]</a>, <a href="#ref-URI">[URI]</a> (see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#page-49">here</a>). </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/fo|o</code>></li> <li><<code>http://example.org/fo<o</code>></li> <li><<code>http://example.org/fo>o</code>></li> <li><<code>http://example.org/fo"o</code>></li> <li><<code>http://example.org/fo`o</code>></li> </ul> @see IRIFactory#allowUnwiseCharacters @see #WHITESPACE @see #DOUBLE_WHITESPACE */ int UNWISE_CHARACTER = 4; /** Control characters are not allowed in URIs or RDF URI References. <p>This is specified in <a href="#ref-RDF"> [RDF]</a>.</p> <dl> <dt> see <a href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref">here</a> </dt> <dd> A URI reference within an RDF graph (an RDF URI reference) is a Unicode string [UNICODE] that: <ul> <li> does not contain any control characters ( #x00 - #x1F, #x7F-#x9F) </li> </ul> </dd> </dl> <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html">here</a> </dt> <dd> <pre> ucschar = %xA0-D7FF / %xF900-FDCF / %xFDF0-FFEF / %x10000-1FFFD / %x20000-2FFFD / %x30000-3FFFD / %x40000-4FFFD / %x50000-5FFFD / %x60000-6FFFD / %x70000-7FFFD / %x80000-8FFFD / %x90000-9FFFD / %xA0000-AFFFD / %xB0000-BFFFD / %xC0000-CFFFD / %xD0000-DFFFD / %xE1000-EFFFD </pre> </dd> </dl> <p>This violates the following specifications: <a href="#ref-RDF">[RDF]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-URI">[URI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/fo\u007Fo</code>></li> <li><<code>http://example.org/fo\u0085o</code>></li> <li><<code>http://example.org/fo\u0009o</code>></li> <li><<code>http://example.org/fo\u0001o</code>></li> </ul> */ int CONTROL_CHARACTER = 5; /** The character is not legal in XML. <p>This is specified in <a href="#ref-XML"> [XML]</a>.</p> <dl> <dt> see <a href="http://www.w3.org/TR/2004/REC-xml-20040204/#NT-Char">here</a> </dt> <dd> Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] </dd> </dl> <p>This violates the following specifications: <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/foo\u0001</code>></li> </ul> */ int NON_XML_CHARACTER = 6; /** The character is discouraged in XML documents. <p>This is specified in <a href="#ref-XML"> [XML]</a>.</p> <dl> <dt> see <a href="http://www.w3.org/TR/2004/REC-xml-20040204/#char32">here</a> </dt> <dd> Document authors are encouraged to avoid "compatibility characters", as defined in section 6.8 of [Unicode] (see also D21 in section 3.6 of [Unicode3]). The characters defined in the following ranges are also discouraged. They are either control characters or permanently undefined Unicode characters: [#x7F-#x84], [#x86-#x9F], [#xFDD0-#xFDDF], </dd> </dl> <p>This violates the following specifications: <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/foo\u0080</code>></li> </ul> */ int DISCOURAGED_XML_CHARACTER = 7; /** The path contains a segment /../ not at the beginning of a relative reference, or it contains a /./ These should be removed. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-6.2.2.3">section 6.2.2.3</a> </dt> <dd> The complete path segments "." and ".." are intended <em>only</em> for use within relative references </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>This violation may indicate security issues, and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#securityViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/../foo</code>></li> <li><<code>http://example.org/foo/../foo</code>></li> <li><<code>http://example.org/foo/..</code>></li> <li><<code>http://example.org/foo/./foo</code>></li> <li><<code>http://example.org/./foo</code>></li> <li><<code>http://example.org/foo/.</code>></li> </ul> */ int NON_INITIAL_DOT_SEGMENT = 8; /** The scheme component is empty. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1">section 3.1</a> </dt> <dd> Scheme names consist of a sequence of characters <em>beginning with a letter</em> and followed by any combination of letters, digits, plus ("+"), period ("."), or hyphen ("-"). </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>://example.org/foo</code>></li> </ul> */ int EMPTY_SCHEME = 9; /** The scheme component must start with a letter. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1">section 3.1</a> </dt> <dd> Scheme names consist of a sequence of characters <em>beginning with a letter</em> and followed by any combination of letters, digits, plus ("+"), period ("."), or hyphen ("-"). </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>007://example.org/foo</code>></li> </ul> */ int SCHEME_MUST_START_WITH_LETTER = 10; /**lowercase is preferred in this component <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> For the SCHEME component: see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1">section 3.1</a> </dt> <dd> An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow "HTTP" as well as "http") for the sake of robustness but should only produce lowercase scheme names for consistency. </dd> <dt> For the HOST component: see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> Although host is case-insensitive, producers and normalizers should use <em>lowercase for registered names</em> and hexadecimal addresses for the sake of uniformity, while only using uppercase letters for percent-encodings. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>HTTP://example.org/foo</code>></li> <li><<code>http://eXamPle.org/foo</code>></li> </ul> */ int LOWERCASE_PREFERRED = 11; /**The colon introducing an empty port component should be omitted entirely, or a port number should be specified. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> URI producers and normalizers should omit the port component <em>and its ":" delimiter</em> if port is empty </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org:/foo</code>></li> </ul> */ int PORT_SHOULD_NOT_BE_EMPTY = 12; /**If the port is the default one for the scheme it should be omitted. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> URI producers and normalizers should omit the port component and its ":" delimiter if port is empty or if its value would be the <em>same as that of the scheme's default.</em> </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org:80/foo</code>></li> </ul> */ int DEFAULT_PORT_SHOULD_BE_OMITTED = 13; /** Ports under 1024 should be accessed using the appropriate scheme name. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-7.2">section 7.2</a> </dt> <dd> Applications should prevent dereference of a URI that specifies a TCP port number within the "well-known port" range <em>(0 - 1023)</em> unless the protocol being used to dereference that URI is compatible with the protocol expected on that well-known port. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation may indicate security issues, and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#securityViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org:180/foo</code>></li> </ul> */ int PORT_SHOULD_NOT_BE_WELL_KNOWN = 14; /**Leading zeros in the port number should be omitted. This is an added feature of this implementation, not mandated by any standard. <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org:08080/foo</code>></li> </ul> */ int PORT_SHOULD_NOT_START_IN_ZERO = 15; /**A prohibited bi-directional control character was found. <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.1">section 4.1</a> </dt> <dd> IRIs MUST NOT contain bidirectional formatting characters (LRM, RLM, LRE, RLE, LRO, RLO, and PDF). </dd> </dl> <p>This violates the <a href= "#ref-IRI">[IRI]</a> specification.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/Andr\u202Abar</code>></li> <li><<code>http://example.org/Andr\u202Bbar</code>></li> <li><<code>http://example.org/Andr\u202Cbar</code>></li> <li><<code>http://example.org/Andr\u202Dbar</code>></li> <li><<code>http://example.org/Andr\u202Ebar</code>></li> <li><<code>http://example.org/Andr\u200Ebar</code>></li> <li><<code>http://example.org/Andr\u200Fbar</code>></li> </ul> <p>Unimplemented.</p> */ int BIDI_FORMATTING_CHARACTER = 16; /** A single whitespace character. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs. <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/ foo</code>></li> <li><<code>file:///Program Files</code>></li> </ul> @see IRIFactory#allowUnwiseCharacters @see #NOT_XML_SCHEMA_WHITESPACE @see #UNWISE_CHARACTER @see #DOUBLE_WHITESPACE */ int WHITESPACE = 17; /** Either two or more consecutive whitespace characters, or leading or trailing whitespace. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, but not XML Schema anyURIs. <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/ foo</code>></li> <li><<code>file:///Program Files</code>></li> <li><<code>file:///TabBar </code>></li> <li><<code> rel-with-initial-space</code>></li> </ul> @see IRIFactory#allowUnwiseCharacters @see #NOT_XML_SCHEMA_WHITESPACE @see #UNWISE_CHARACTER @see #WHITESPACE */ int DOUBLE_WHITESPACE = 18; /** Whitespace characters match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, and XML system identifiers. However, tab and new line characters, and consecutive space characters cannot occur in XML Schema anyURIs. <p>This is specified in <a href="#ref-Schema"> [Schema]</a>.</p> <dl> <dt> see <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#schema">here</a> </dt> <dd> <pre> <xs:simpleType name="anyURI" id="anyURI"> [...] <xs:restriction base="xs:anySimpleType"> <xs:whiteSpace fixed="true" value="collapse" id="anyURI.whiteSpace"/> </xs:restriction> </xs:simpleType> </pre> </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>file:///Tab\u0009Bar</code>></li> <li><<code>file:///Tab\u000ABar</code>></li> <li><<code>file:///Tab\u000DBar</code>></li> </ul> @see IRIFactory#allowUnwiseCharacters @see #DOUBLE_WHITESPACE @see #WHITESPACE */ int NOT_XML_SCHEMA_WHITESPACE = 19; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int DOUBLE_DASH_IN_REG_NAME = 20; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int SCHEME_INCLUDES_DASH = 21; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int NON_URI_CHARACTER = 22; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int PERCENT_20 = 23; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int PERCENT = 24; /** A syntax violation was detected in an IP V6 (or future) address. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> <pre> IP-literal = "[" ( IPv6address / IPvFuture ) "]" IPvFuture = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" ) IPv6address = 6( h16 ":" ) ls32 / "::" 5( h16 ":" ) ls32 / [ h16 ] "::" 4( h16 ":" ) ls32 / [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32 / [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32 / [ *3( h16 ":" ) h16 ] "::" h16 ":" ls32 / [ *4( h16 ":" ) h16 ] "::" ls32 / [ *5( h16 ":" ) h16 ] "::" h16 / [ *6( h16 ":" ) h16 ] "::" ls32 = ( h16 ":" h16 ) / IPv4address ; least-significant 32 bits of address h16 = 1*4HEXDIG ; 16 bits of address represented in hexadecimal </pre> </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://[/</code>></li> <li><<code>ldap://[20015:db8::7]/c=GB?objectClass?one</code>></li> <li><<code>ldap://[2001:db8:::7]/c=GB?objectClass?one</code>></li> </ul> */ int IP_V6_OR_FUTURE_ADDRESS_SYNTAX = 25; /** IP version 6 addresses should use lowercase hexadecimal <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> Although host is case-insensitive, producers and normalizers <em>should use lowercase</em> for registered names and <em>hexadecimal addresses</em> for the sake of uniformity </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>ldap://[2001:Db8::7]/c=GB?objectClass?one</code>></li> <li><<code>ldap://[2001:dB8::7]/c=GB?objectClass?one</code>></li> </ul> */ int IPv6ADDRESS_SHOULD_BE_LOWERCASE = 26; /** A host entry consists of four numbers, but they are not in the range 0-255, or have leading zeros. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> A host identified by an IPv4 literal address is represented in dotted-decimal notation (a sequence of <em>four decimal numbers</em> in the range <em>0 to 255</em> , separated by "."), </dd> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> <pre> dec-octet = DIGIT ; 0-9 / %x31-39 DIGIT ; 10-99 / "1" 2DIGIT ; 100-199 / "2" %x30-34 DIGIT ; 200-249 / "25" %x30-35 ; 250-255 </pre> </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>ldap://155.00.55.102/c=GB?objectClass?one</code>></li> <li><<code>ldap://20.256.20.20/c=GB?objectClass?one</code>></li> <li><<code>ldap://20.1000.20.20/c=GB?objectClass?one</code>></li> <li><<code>ldap://20.010.20.20/c=GB?objectClass?one</code>></li> </ul> */ int IP_V4_OCTET_RANGE = 27; /** The host component did not meet the restrictions on DNS names. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> URI producers should use names that <em>conform to the DNS syntax</em> , even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation is relevant for IRIs using DNS as the registry of hostnames. The behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#dnsViolation}. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>ldap://foo$/c=GB?objectClass?one</code>></li> <li><<code>http://foo.example.$org/</code>></li> </ul> */ int NOT_DNS_NAME = 28; /** The host component used percent encoding, where punycode is preferred. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>This violation is relevant for IRIs using DNS as the registry of hostnames. The behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#dnsViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>ftp://andr%C3%A9.example.org/</code>></li> </ul> */ int USE_PUNYCODE_NOT_PERCENTS = 29; /** The host component a percent occurred without two following hexadecimal digits. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1">section 2.1</a> </dt> <dd> A percent-encoded octet is encoded as a character triplet, consisting of the percent character "%" followed by the two hexadecimal digits representing that octet's numeric value. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>ftp://andr%%A9.example.org/</code>></li> <li><<code>ftp://andr%.example.org/</code>></li> <li><<code>ftp://andre.example.org/%</code>></li> <li><<code>ftp://andre.example.org/%A</code>></li> <li><<code>ftp://andre.example.org/%A?</code>></li> <li><<code>ftp://andre.example.org/%A#</code>></li> </ul> */ int ILLEGAL_PERCENT_ENCODING = 30; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int ACE_PREFIX = 31; /** A unicode surrogate character that is not of a surrogate pair. <p>This does not violate any of the supported IRI, URI or scheme specifications.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http:/foo/p\uD800</code>></li> </ul> */ int LONE_SURROGATE = 32; /** A DNS name had a - at the beginning or end. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> Such a name consists of a sequence of domain labels separated by ".", each domain label starting and ending with an alphanumeric character and possibly also containing "-" characters. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation is relevant for IRIs using DNS as the registry of hostnames. The behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#dnsViolation}. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>ldap://-foo/c=GB?objectClass?one</code>></li> <li><<code>http://foo.example.org-/</code>></li> <li><<code>http://foo.example.org--/</code>></li> <li><<code>http://--foo.example.org/</code>></li> <li><<code>http://-fo-o.example.org/</code>></li> </ul> */ int DNS_LABEL_DASH_START_OR_END = 33; /** Characters used in the IRI were unassigned in the version of Unicode known by this system. They may have been assigned since. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers. </dd> </dl> <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1">section 3.1</a> </dt> <dd> Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://foo.example\u0221.org/</code>></li> </ul> */ int BAD_IDN_UNASSIGNED_CHARS = 34; /** The Internationalized Domain Name check failed. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2</a> </dt> <dd> When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers. </dd> </dl> <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1">section 3.1</a> </dt> <dd> Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://--foo.example.org/</code>></li> <li><<code>http://xn--andr--ep-.example.org/</code>></li> <li><<code>http://xn.example.\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333/</code>></li> </ul> */ int BAD_IDN = 35; /** Including passwords in URIs is deprecated. <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1">section 3.2.1</a> </dt> <dd> Use of the format "user:password" in the userinfo field is deprecated. </dd> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1">section 3.2.1</a> </dt> <dd> Applications may choose to ignore or reject such data when it is received as part of a reference and should reject the storage of such data in unencrypted form. The passing of authentication information in clear text has proven to be a security risk in almost every case where it has been used. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>This violation may indicate security issues, and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#securityViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://user:pass@example.org/</code>></li> </ul> */ int HAS_PASSWORD = 36; /** Certain characters are discouraged in IRIs. <p> Implementation is very partial. The amount of guidance as to which characters to discourage is insufficient. </p> <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-6.1">section 6.1</a> </dt> <dd> The UCS contains many areas of characters for which there are strong visual look-alikes. Because of the likelihood of transcription errors, these also should be avoided. This includes the full-width equivalents of Latin characters, half-width Katakana characters for Japanese, and many others. It also includes many look-alikes of "space", "delims", and "unwise", characters excluded in [RFC3491]. </dd> </dl> <p>This violates the <a href= "#ref-IRI">[IRI]</a> specification.</p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/\u2000en-quad</code>></li> <li><<code>http://example.org/\u205Fmedium-mathematical-space</code>></li> <li><<code>http://example\uFF95.org/</code>></li> <li><<code>http://example\uFF47.org/</code>></li> </ul> <p>Unimplemented.</p> */ int DISCOURAGED_IRI_CHARACTER = 37; /** There are restrictions on bidi characters in subcomponents of IRIs <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.2">section 4.2</a> </dt> <dd> <ol> <li> A component SHOULD NOT use both right-to-left and left-to-right characters. </li> <li> A component using right-to-left characters SHOULD start and end with right-to-left characters. </li> </ol> </dd> </dl> <p>This violates the <a href= "#ref-IRI">[IRI]</a> specification.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">SHOULD</a> force. By default, this is treated as an error (for the relevant specs), but that behaviour can be modified by {@link IRIFactory#shouldViolation}. </p> <p>Unimplemented.</p> */ int BAD_BIDI_SUBCOMPONENT = 38; /** // TODO complete entry for DNS_LENGTH_LIMIT */ int DNS_LENGTH_LIMIT = 39; /** // TODO complete entry for DNS_LABEL_LENGTH_LIMIT */ int DNS_LABEL_LENGTH_LIMIT = 40; /** // TODO complete entry for NOT_UTF8_ESCAPE */ int NOT_UTF8_ESCAPE = 41; /** // TODO complete entry for NOT_UTF8_ESCAPE_IN_HOST */ int NOT_UTF8_ESCAPE_IN_HOST = 42; /** // TODO complete entry for BAD_DOT_IN_IDN */ int BAD_DOT_IN_IDN = 43; /** The scheme name does not have a "-" in it, but is not in the IANA registry. (Last updated from the registry January 2006) <p>This is specified in <a href="#ref-URL_Registratrion"> [URL_Registratrion]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc2717.html#sec-">section </a> </dt> <dd> </dd> </dl> <p>This is specified in <a href="#ref-URI"> [URI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2">section 3.2</a> </dt> <dd> The NAMES of schemes registered in the IETF tree MUST NOT contain the dash (also known as the hyphen and minus sign) character ('-') USASCII value 2Dh. Use of this character can cause confusion with schemes registered in alternative trees (see section 3.3). </dd> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.3">section 3.3</a> </dt> <dd> The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document: <pre> <prefix>'-'<tree-specific identifier> </pre> For instance, the "foo" tree would allow creation of scheme names of the form: "foo-blahblah:" and "foo-bar:", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>foo://example.org/bar</code>></li> </ul> */ int UNREGISTERED_IANA_SCHEME = 44; /** The scheme name has a "-" in it, but it does not start in "x-" and the prefix is not known as the prefix of an alternative tree for URI schemes. <p> There is no standard provision for "x-" as a prefix for private use schemes. This is a feature of this implementation. As far as I am aware, no alternative trees have been registered. </p> <p>This is specified in <a href="#ref-URL_Registratrion"> [URL_Registratrion]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc2717.html#sec-3.3">section 3.3</a> </dt> <dd> The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document: <pre> <prefix>'-'<tree-specific identifier> </pre> For instance, the "foo" tree would allow creation of scheme names of the form: "foo-blahblah:" and "foo-bar:", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix. </dd> </dl> <p>This violates the following specifications: <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-Schema">[Schema]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>foo-bar://example.org/bar</code>></li> </ul> */ int UNREGISTERED_NONIETF_SCHEME_TREE = 45; /** The IRI is not in Unicode Normal Form C. <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-5.3.2.2">section 5.3.2.2</a> </dt> <dd> To avoid false negatives and problems with transcoding, IRIs SHOULD be created by using NFC. </dd> </dl> <p>This violates the <a href= "#ref-IRI">[IRI]</a> specification.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">SHOULD</a> force. By default, this is treated as an error (for the relevant specs), but that behaviour can be modified by {@link IRIFactory#shouldViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/#Andre\u0301</code>></li> </ul> <p>Unimplemented.</p> */ int NOT_NFC = 46; /** The IRI is not in Unicode Normal Form KC. <p>This is specified in <a href="#ref-IRI"> [IRI]</a>.</p> <dl> <dt> see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-7.5">section 7.5</a> </dt> <dd> Although there may be exceptions, newly created resource names should generally be in NFKC </dd> </dl> <p>This violates the <a href= "#ref-IRI">[IRI]</a> specification.</p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> <p>The following are examples of IRIs that have this violation:</p> <ul> <li><<code>http://example.org/#Andre\u0301</code>></li> </ul> <p>Unimplemented.</p> */ int NOT_NFKC = 47; /**TODO <p>This violates the following specifications: <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int DEPRECATED_UNICODE_CHARACTER = 48; /**TODO <p>This violates the following specifications: <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int UNDEFINED_UNICODE_CHARACTER = 49; /**TODO <p>This violates the following specifications: <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int PRIVATE_USE_CHARACTER = 50; /**TODO <p>This violates the following specifications: <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int UNICODE_CONTROL_CHARACTER = 51; /**The character code is not assigned in the version of Unicode implemented here. <p>This violates the following specifications: <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> */ int UNASSIGNED_UNICODE_CHARACTER = 52; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int MAYBE_NOT_NFC = 53; /** Internal code. This is not an error or warning condition, but is used to trigger more expensive processing. */ int MAYBE_NOT_NFKC = 54; /**TODO <p>This violates the following specifications: <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int UNICODE_WHITESPACE = 55; /**TODO <p>This violates the following specifications: <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>. </p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int COMPATIBILITY_CHARACTER = 56; /**A component that is required by the scheme is missing. <p>This does not violate any of the supported IRI, URI or scheme specifications.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int REQUIRED_COMPONENT_MISSING = 57; /**A component that is prohibited by the scheme is present. <p>This does not violate any of the supported IRI, URI or scheme specifications.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int PROHIBITED_COMPONENT_PRESENT = 58; /**Some part of the scheme specific syntax requires lowercase. <p>This does not violate any of the supported IRI, URI or scheme specifications.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int SCHEME_REQUIRES_LOWERCASE = 59; /**Some part of the scheme specific syntax prefers lowercase. <p>This does not violate any of the supported IRI, URI or scheme specifications.</p> <p>This violation relates to creating your own IRIs, rather than accepting and processing other peoples', and the behaviour of a factory implementing the relevant specs can be modified by {@link IRIFactory#mintingViolation}. </p> */ int SCHEME_PREFERS_LOWERCASE = 60; /**The scheme specific syntax rules are violated. <p>This does not violate any of the supported IRI, URI or scheme specifications.</p> <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p> */ int SCHEME_PATTERN_MATCH_FAILED = 61; /** // TODO complete entry for QUERY_IN_LEGACY_SCHEME */ int QUERY_IN_LEGACY_SCHEME = 62; }