Add core listener methods for key store creation.
[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 listener that a new key store was created.
35          *
36          * @param keyStore
37          *            The key store that was created
38          */
39         public void keyStoreCreated(KeyStore keyStore);
40
41         /**
42          * Notifies all listeners that a key store of the given type could not be
43          * created.
44          *
45          * @param keyStoreType
46          *            The type of the key store that should be created
47          * @param reason
48          *            The reason why the key store could not be created
49          */
50         public void keyStoreNotCreated(String keyStoreType, Throwable reason);
51
52         /**
53          * Notifies all listeners that a key store was loaded from a file.
54          *
55          * @param keyStoreFile
56          *            The key store file
57          * @param keyStore
58          *            The loaded key store
59          */
60         public void keyStoreLoaded(File keyStoreFile, KeyStore keyStore);
61
62         /**
63          * Notifies all listeners that a key store file could not be loaded.
64          *
65          * @param keyStoreFile
66          *            The key store file
67          */
68         public void keyStoreNotLoaded(File keyStoreFile);
69
70 }