Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2008-02-22 18:50:25 +0000
committerThomas Watson2008-02-22 18:50:25 +0000
commitc30996c984ee3fd034347207493402378f8aea47 (patch)
treee304c017a0c8a76d6f59cb2b8388c96647963aac
parent90c1ec7d5a479ee99ff2831fd3a446b75a3f5499 (diff)
downloadrt.equinox.framework-c30996c984ee3fd034347207493402378f8aea47.tar.gz
rt.equinox.framework-c30996c984ee3fd034347207493402378f8aea47.tar.xz
rt.equinox.framework-c30996c984ee3fd034347207493402378f8aea47.zip
Bug 219999 SignedContent missing a since tagv20080222
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEngine.java1
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEvent.java3
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationListener.java3
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/TrustEngine.java3
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java3
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContent.java3
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentEntry.java3
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentFactory.java3
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignerInfo.java3
9 files changed, 17 insertions, 8 deletions
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEngine.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEngine.java
index bb779ce7e..5fa5f543d 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEngine.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEngine.java
@@ -19,6 +19,7 @@ import org.osgi.util.tracker.ServiceTracker;
* An authorization engine is used to grant authorization to {@link SignedContent}.
* For example, an engine could determine if <code>SignedContent</code> is authorized
* to enable code from a signed bundle.
+ * @since 3.4
*/
public abstract class AuthorizationEngine {
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEvent.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEvent.java
index 0716e5271..836cbf27c 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEvent.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationEvent.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -15,6 +15,7 @@ import org.eclipse.osgi.signedcontent.SignedContent;
/**
* An event that is fired when an AuthorizationEngine implementation makes
* a decision.
+ * @since 3.4
*/
public class AuthorizationEvent {
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationListener.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationListener.java
index c9a72284a..e6ac3dd4a 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationListener.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/AuthorizationListener.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -15,6 +15,7 @@ import java.util.EventListener;
/**
* A Listener interface for an authorization handler. Implementors
* should register as an OSGI service.
+ * @since 3.4
*/
public interface AuthorizationListener extends EventListener {
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/TrustEngine.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/TrustEngine.java
index a7bce560b..317473aa5 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/TrustEngine.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/service/security/TrustEngine.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
+ * Copyright (c) 2005, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -18,6 +18,7 @@ import org.eclipse.osgi.internal.signedcontent.TrustEngineListener;
/**
* A <code>TrustEngine</code> is used to establish the authenticity of a
* {@link Certificate} chain.
+ * @since 3.4
*/
public abstract class TrustEngine {
/**
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java
index 1518be974..7311b8980 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
+ * Copyright (c) 2005, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -14,6 +14,7 @@ import java.io.IOException;
/**
* Indicates that signed content is invalid according to one of the signers.
+ * @since 3.4
*/
public class InvalidContentException extends IOException {
private static final long serialVersionUID = -399150159330289387L;
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContent.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContent.java
index 0bf9f8f1a..e77de260c 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContent.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContent.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -24,6 +24,7 @@ import java.util.Date;
* <p>
* This interface is not intended to be implemented by clients.
* </p>
+ * @since 3.4
*/
public interface SignedContent {
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentEntry.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentEntry.java
index 060caa890..2a1d5b47b 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentEntry.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentEntry.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
+ * Copyright (c) 2005, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -24,6 +24,7 @@ import java.io.IOException;
* <p>
* This interface is not intended to be implemented by clients.
* </p>
+ * @since 3.4
*/
public interface SignedContentEntry {
/**
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentFactory.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentFactory.java
index a3ca738e1..7964d5855 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentFactory.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignedContentFactory.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -28,6 +28,7 @@ import org.osgi.framework.Bundle;
* <p>
* This interface is not intended to be implemented by clients.
* </p>
+ * @since 3.4
*/
public interface SignedContentFactory {
/**
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignerInfo.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignerInfo.java
index c2a635040..8810be2f6 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignerInfo.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/SignerInfo.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
+ * Copyright (c) 2005, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -17,6 +17,7 @@ import java.security.cert.Certificate;
* <p>
* This interface is not intended to be implemented by clients.
* </p>
+ * @since 3.4
*/
public interface SignerInfo {

Back to the top