KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > keystore > wizards > actions > KeyStoreImportTypeAction


1 /*
2  * SSL-Explorer
3  *
4  * Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
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
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */

19             
20 package com.sslexplorer.keystore.wizards.actions;
21
22 import javax.servlet.http.HttpServletRequest JavaDoc;
23 import javax.servlet.http.HttpServletResponse JavaDoc;
24
25 import org.apache.commons.logging.Log;
26 import org.apache.commons.logging.LogFactory;
27 import org.apache.struts.action.ActionForm;
28 import org.apache.struts.action.ActionForward;
29 import org.apache.struts.action.ActionMapping;
30
31 import com.sslexplorer.core.CoreUtil;
32 import com.sslexplorer.keystore.actions.ShowKeyStoreDispatchAction;
33 import com.sslexplorer.policyframework.Permission;
34 import com.sslexplorer.policyframework.PolicyConstants;
35 import com.sslexplorer.security.SessionInfo;
36 import com.sslexplorer.wizard.AbstractWizardSequence;
37 import com.sslexplorer.wizard.DefaultWizardSequence;
38 import com.sslexplorer.wizard.WizardStep;
39 import com.sslexplorer.wizard.actions.AbstractWizardAction;
40
41 /**
42  * Implemetnation of an {@link com.sslexplorer.wizard.actions.AbstractWizardAction}
43  * used in the key store import wizard. Here the administrator selects the
44  * type of import.
45  *
46  * @author Brett Smith <a HREF="mailto: brett@3sp.com">&lt;brett@3sp.com&gt;</a>
47  */

48 public class KeyStoreImportTypeAction extends AbstractWizardAction {
49
50     static Log log = LogFactory.getLog(ShowKeyStoreDispatchAction.class);
51     
52     /**
53      * Constructor
54      */

55     public KeyStoreImportTypeAction() {
56         super(PolicyConstants.KEYSTORE_RESOURCE_TYPE, new Permission[] {
57                         PolicyConstants.PERM_CHANGE
58                     });
59     }
60
61     /* (non-Javadoc)
62      * @see com.sslexplorer.core.actions.CoreAction#getNavigationContext(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
63      */

64     public int getNavigationContext(ActionMapping mapping, ActionForm form, HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response) {
65         return SessionInfo.MANAGEMENT_CONSOLE_CONTEXT;
66     }
67
68     /* (non-Javadoc)
69      * @see com.sslexplorer.wizard.actions.AbstractWizardAction#createWizardSequence(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
70      */

71     protected AbstractWizardSequence createWizardSequence(ActionMapping mapping, ActionForm form, HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response) throws Exception JavaDoc {
72         ActionForward fwd = mapping.findForward("finish");
73         DefaultWizardSequence seq = new DefaultWizardSequence(fwd, "keystore", "keyStoreImportWizard", CoreUtil.getReferer(request), "keyStoreImportWizard", this.getSessionInfo(request));
74         seq.addStep(new WizardStep("/keyStoreImportType.do", true));
75         seq.addStep(new WizardStep("/keyStoreImportFile.do"));
76         seq.addStep(new WizardStep("/keyStoreImportSummary.do"));
77         return seq;
78     }
79 }
80
Popular Tags