Change writing of “key store”.
[jkeytool.git] / src / net / pterodactylus / jkeytool / core / CoreListener.java
1 /*
2  * jkeytool - CoreListener.java -
3  * Copyright © 2009 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jkeytool.core;
21
22 import java.io.File;
23 import java.security.KeyStore;
24 import java.util.EventListener;
25
26 /**
27  * Listener interface for {@link Core} events.
28  *
29  * @author David Roden <droden@gmail.com>
30  */
31 public interface CoreListener extends EventListener {
32
33         /**
34          * Notifies all listeners that a key store was loaded from a file.
35          *
36          * @param keyStoreFile
37          *            The key store file
38          * @param keyStore
39          *            The loaded key store
40          */
41         public void keyStoreLoaded(File keyStoreFile, KeyStore keyStore);
42
43         /**
44          * Notifies all listeners that a key store file could not be loaded.
45          *
46          * @param keyStoreFile
47          *            The key store file
48          */
49         public void keyStoreNotLoaded(File keyStoreFile);
50
51 }