KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > sample > samplewizard > forms > SampleDefaultDetailsForm


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.sample.samplewizard.forms;
21
22 import javax.servlet.http.HttpServletRequest JavaDoc;
23
24 import org.apache.commons.logging.Log;
25 import org.apache.commons.logging.LogFactory;
26 import org.apache.struts.action.ActionErrors;
27 import org.apache.struts.action.ActionMapping;
28
29 import com.sslexplorer.core.forms.AbstractFavoriteResourceDetailsWizardForm;
30 import com.sslexplorer.navigation.FavoriteResourceType;
31 import com.sslexplorer.sample.Sample;
32 import com.sslexplorer.wizard.AbstractWizardSequence;
33
34 /**
35  * <p>
36  * The form for the default resource attributes.
37  *
38  * @author James D Robinson <a HREF="mailto:james@3sp.com">&lt;james@3sp.com&gt;</a>
39  *
40  */

41 public class SampleDefaultDetailsForm extends AbstractFavoriteResourceDetailsWizardForm {
42
43     final static Log log = LogFactory.getLog(SampleDefaultDetailsForm.class);
44
45     /**
46      * Constructor
47      */

48     public SampleDefaultDetailsForm() {
49         super(true, false, "/WEB-INF/jsp/content/sample/samplewizard/sampleDefaultDetails.jspf", "resourceName", true, false,
50                         "sampleDefaultDetails", "sample", "samplewizard.sampleDefaultDetails", 1, (FavoriteResourceType)Sample.SAMPLE_RESOURCE_TYPE);
51     }
52
53     /*
54      * (non-Javadoc)
55      *
56      * @see org.apache.struts.action.ActionForm#validate(org.apache.struts.action.ActionMapping,
57      * javax.servlet.http.HttpServletRequest)
58      */

59     public ActionErrors validate(ActionMapping mapping, HttpServletRequest JavaDoc request) {
60         if (getResourceName() != null && !isCancelling()) {
61             ActionErrors errs = super.validate(mapping, request);
62             // TODO validate the extra attributes.
63
return errs;
64         }
65         return null;
66     }
67
68     /*
69      * (non-Javadoc)
70      *
71      * @see com.sslexplorer.core.forms.AbstractResourceDetailsWizardForm#parentResourcePermissionChanged(com.sslexplorer.wizard.AbstractWizardSequence)
72      */

73     public void parentResourcePermissionChanged(AbstractWizardSequence sequence) {
74     }
75 }
76
Popular Tags