From 13d662c3ff86bbcb3354972e6ed84f6ab0668328 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Tue, 18 Jul 2023 12:46:58 -0500 Subject: [PATCH] Remove unused IAuthInfo --- .../com/netscape/certsrv/base/IAuthInfo.java | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 base/common/src/main/java/com/netscape/certsrv/base/IAuthInfo.java diff --git a/base/common/src/main/java/com/netscape/certsrv/base/IAuthInfo.java b/base/common/src/main/java/com/netscape/certsrv/base/IAuthInfo.java deleted file mode 100644 index b2cb2c934f9..00000000000 --- a/base/common/src/main/java/com/netscape/certsrv/base/IAuthInfo.java +++ /dev/null @@ -1,31 +0,0 @@ -// --- BEGIN COPYRIGHT BLOCK --- -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; version 2 of the License. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License along -// with this program; if not, write to the Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -// -// (C) 2007 Red Hat, Inc. -// All rights reserved. -// --- END COPYRIGHT BLOCK --- -package com.netscape.certsrv.base; - -/** - * An interface represents an authentication context. This - * is an entity that encapsulates the authentication - * information of a service requestor. For example, CMS - * user needs to authenticate to CMS using SSL. The - * client certificate is expressed in authenticated context. - *

- * - * @version $Revision$, $Date$ - */ -public interface IAuthInfo { -}