Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/namespace/NativeNamespace.java')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/namespace/NativeNamespace.java15
1 files changed, 8 insertions, 7 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/namespace/NativeNamespace.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/namespace/NativeNamespace.java
index 0e11cacf6..fc914204c 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/namespace/NativeNamespace.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/namespace/NativeNamespace.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) OSGi Alliance (2012, 2013). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2016). All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -30,6 +30,7 @@ import org.osgi.resource.Namespace;
* {@code String}, unless otherwise indicated.
*
* @Immutable
+ * @since 1.1
* @author $Id$
*/
public final class NativeNamespace extends Namespace {
@@ -42,9 +43,9 @@ public final class NativeNamespace extends Namespace {
/**
* The capability attribute contains alias values of the
* {@link Constants#FRAMEWORK_OS_NAME org.osgi.framework.os.name} launching
- * property value according to the <a
- * href="http://www.osgi.org/Specifications/Reference">OSGi Specification
- * References</a>. The value of this attribute must be of type
+ * property value according to the
+ * <a href="https://www.osgi.org/developer/specifications/reference/">OSGi
+ * Specification References</a>. The value of this attribute must be of type
* {@code List<String>}.
*/
public final static String CAPABILITY_OSNAME_ATTRIBUTE = NATIVE_NAMESPACE + ".osname";
@@ -60,9 +61,9 @@ public final class NativeNamespace extends Namespace {
/**
* The capability attribute contains alias values of the
* {@link Constants#FRAMEWORK_PROCESSOR org.osgi.framework.processor}
- * launching property value according to the <a
- * href="http://www.osgi.org/Specifications/Reference">OSGi Specification
- * References</a>. The value of this attribute must be of type
+ * launching property value according to the
+ * <a href="https://www.osgi.org/developer/specifications/reference/">OSGi
+ * Specification References</a>. The value of this attribute must be of type
* {@code List<String>}.
*/
public final static String CAPABILITY_PROCESSOR_ATTRIBUTE = NATIVE_NAMESPACE + ".processor";

Back to the top