-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace IPasswordStore with PasswordStore
The PasswordStore has been added to replace IPasswordStore. The IPasswordStore has been deprecated and will be removed in the future.
- Loading branch information
Showing
5 changed files
with
54 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
= API Changes = | ||
|
||
== Deprecate IPasswordStore == | ||
|
||
The `org.dogtagpki.jss.tomcat.IPasswordStore` has been deprecated. | ||
Use `org.dogtagpki.jss.tomcat.PasswordStore` instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
tomcat/src/main/java/org/dogtagpki/jss/tomcat/PasswordStore.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* BEGIN COPYRIGHT BLOCK | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library 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 | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
* Copyright (C) 2007 Red Hat, Inc. | ||
* All rights reserved. | ||
* END COPYRIGHT BLOCK */ | ||
|
||
package org.dogtagpki.jss.tomcat; | ||
|
||
import java.io.IOException; | ||
import java.util.Enumeration; | ||
|
||
public interface PasswordStore { | ||
public void init(String pwdPath) throws IOException; | ||
|
||
public String getPassword(String tag, int iteration); | ||
|
||
public String getPassword(String tag); | ||
|
||
public Enumeration<String> getTags(); | ||
|
||
public Object putPassword(String tag, String password); | ||
|
||
public void commit() throws IOException, ClassCastException, | ||
NullPointerException; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters