Skip to content

Commit

Permalink
Javadoc and comments: Use an HTTPS URL
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 14, 2024
1 parent 6e58020 commit 5e3ecad
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public interface Literal extends RDFTerm {
* >http://www.w3.org/1999/02/22-rdf-syntax-ns#langString</a>,
* {@link #getLanguageTag()} must not return {@link Optional#empty()}, and
* it must return a valid
* <a href="http://tools.ietf.org/html/bcp47">BCP47</a> language tag.
* <a href="https://tools.ietf.org/html/bcp47">BCP47</a> language tag.
*
* @return The datatype IRI for this literal.
* @see <a href=
Expand All @@ -84,7 +84,7 @@ public interface Literal extends RDFTerm {
* <a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
* >http://www.w3.org/1999/02/22-rdf-syntax-ns#langString</a>, the language
* tag for this Literal is a non-empty language tag as defined by
* <a href="http://tools.ietf.org/html/bcp47">BCP47</a>.<br>
* <a href="https://tools.ietf.org/html/bcp47">BCP47</a>.<br>
* If the datatype IRI is not
* <a href="http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
* >http://www.w3.org/1999/02/22-rdf-syntax-ns#langString</a>, this method
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public interface RDF {
* not include "quotes" unless those are part of the literal value.
*
* The provided language tag MUST be valid according to
* <a href="http://tools.ietf.org/html/bcp47">BCP47</a>, e.g.
* <a href="https://tools.ietf.org/html/bcp47">BCP47</a>, e.g.
* <code>en</code>.
*
* The provided language tag
Expand All @@ -198,7 +198,7 @@ public interface RDF {
* The literal value
* @param languageTag
* The non-empty language tag as defined by
* <a href="http://tools.ietf.org/html/bcp47">BCP47</a>
* <a href="https://tools.ietf.org/html/bcp47">BCP47</a>
* @return The created Literal
* @throws IllegalArgumentException
* If the provided values are not acceptable, e.g. because the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
* 1.1 syntaxes and their media types.
* <p>
* For further documentation and contact details, see the
* <a href="http://commonsrdf.incubator.apache.org/">Commons RDF</a> web site.
* <a href="https://commonsrdf.incubator.apache.org/">Commons RDF</a> web site.
*/
package org.apache.commons.rdf.api;
2 changes: 1 addition & 1 deletion commons-rdf-examples/src/example/IntroToRDF.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.apache.commons.rdf.simple.SimpleRDF;
import org.apache.commons.rdf.simple.Types;

/** See http://commonsrdf.incubator.apache.org/introduction.html
/** See https://commonsrdf.incubator.apache.org/introduction.html
*/
public class IntroToRDF {
public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
public abstract class InternalJenaFactory {

static {
// http://jena.apache.org/documentation/notes/system-initialization.html
// https://jena.apache.org/documentation/notes/system-initialization.html
JenaSystem.init();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/
/**
* Commons RDF integration with <a href="http://rdf4j.org/">RDF4J</a>.
* Commons RDF integration with <a href="https://rdf4j.org/">RDF4J</a>.
* <p>
* Use the {@link org.apache.commons.rdf.rdf4j.RDF4J} to convert between Commons RDF and RDF4J types, for
* instance {@link org.apache.commons.rdf.rdf4j.RDF4J#asQuad(org.eclipse.rdf4j.model.Statement)} converts a
Expand Down

0 comments on commit 5e3ecad

Please sign in to comment.