summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
diff options
context:
space:
mode:
authorAbhishek Koneru <akoneru@redhat.com>2012-06-06 16:55:54 -0400
committerEndi Sukma Dewata <edewata@redhat.com>2012-06-14 17:14:19 -0500
commitc53ca291e21761f1de5417ef596afba395a7f5d1 (patch)
tree47a0cd8ecd9d36d414d9230282704e9f784d0a71 /base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
parent084a8cd360c7508febde06415d727d7d247b16ad (diff)
downloadpki-c53ca291e21761f1de5417ef596afba395a7f5d1.tar.gz
pki-c53ca291e21761f1de5417ef596afba395a7f5d1.tar.xz
pki-c53ca291e21761f1de5417ef596afba395a7f5d1.zip
Fixes for NULL_RETURNS Coverity Issues - Part 2
Diffstat (limited to 'base/common/src/com/netscape/certsrv/authentication/IAuthToken.java')
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/IAuthToken.java18
1 files changed, 12 insertions, 6 deletions
diff --git a/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java b/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
index 25a73b8f1..e469f3786 100644
--- a/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
+++ b/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
@@ -17,7 +17,9 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.certsrv.authentication;
+import java.io.IOException;
import java.math.BigInteger;
+import java.security.cert.CertificateException;
import java.util.Date;
import java.util.Enumeration;
@@ -176,9 +178,10 @@ public interface IAuthToken {
* Retrieves the CertificateExtensions value for name.
*
* @param name The attribute name.
- * @return The value or null on error.
+ * @return The value.
+ * @throws IOException
*/
- public CertificateExtensions getInCertExts(String name);
+ public CertificateExtensions getInCertExts(String name) throws IOException;
/**
* Stores the CertificateExtensions with the associated key.
@@ -193,9 +196,11 @@ public interface IAuthToken {
* Retrieves the Certificates value for name.
*
* @param name The attribute name.
- * @return The value or null on error.
+ * @return The value.
+ * @throws IOException
+ * @throws CertificateException
*/
- public Certificates getInCertificates(String name);
+ public Certificates getInCertificates(String name) throws IOException, CertificateException;
/**
* Stores the Certificates with the associated key.
@@ -210,9 +215,10 @@ public interface IAuthToken {
* Retrieves the byte[][] value for name.
*
* @param name The attribute name.
- * @return The value or null on error.
+ * @return The value.
+ * @throws IOException
*/
- public byte[][] getInByteArrayArray(String name);
+ public byte[][] getInByteArrayArray(String name) throws IOException;
/**
* Stores the byte[][] with the associated key.