Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 304554 Details for
Bug 440079
Importing agent cert causes Warning in Firefox
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
New file to implement server side of fix.
ImportCAChainPanel.java (text/plain), 4.30 KB, created by
Jack Magne
on 2008-05-05 20:23:39 UTC
(
hide
)
Description:
New file to implement server side of fix.
Filename:
MIME Type:
Creator:
Jack Magne
Created:
2008-05-05 20:23:39 UTC
Size:
4.30 KB
patch
obsolete
>// --- BEGIN COPYRIGHT BLOCK --- >// This program is free software; you can redistribute it and/or modify >// it under the terms of the GNU General Public License as published by >// the Free Software Foundation; version 2 of the License. >// >// This program 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 General Public License for more details. >// >// You should have received a copy of the GNU General Public License along >// with this program; if not, write to the Free Software Foundation, Inc., >// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. >// >// (C) 2007 Red Hat, Inc. >// All rights reserved. >// --- END COPYRIGHT BLOCK --- >package com.netscape.cms.servlet.csadmin; > > >import org.apache.velocity.Template; >import org.apache.velocity.servlet.VelocityServlet; >import org.apache.velocity.app.Velocity; >import org.apache.velocity.context.Context; >import com.netscape.certsrv.base.*; >import com.netscape.certsrv.apps.*; >import com.netscape.certsrv.property.*; >import com.netscape.certsrv.usrgrp.*; >import com.netscape.cmsutil.crypto.*; >import com.netscape.certsrv.template.*; >import com.netscape.certsrv.profile.*; >import com.netscape.certsrv.property.*; >import com.netscape.certsrv.authentication.*; >import com.netscape.certsrv.request.*; >import com.netscape.certsrv.ca.*; >import com.netscape.certsrv.dbs.certdb.*; >import java.io.*; >import java.math.*; >import java.util.*; >import java.security.*; >import java.security.cert.*; >import javax.servlet.*; >import javax.servlet.http.*; >import netscape.ldap.*; >import netscape.security.util.*; >import netscape.security.pkcs.*; >import netscape.security.x509.*; > >import org.mozilla.jss.asn1.*; >import com.netscape.cms.servlet.wizard.*; > >public class ImportCAChainPanel extends WizardPanelBase { > > public ImportCAChainPanel() {} > > /** > * Initializes this panel. > */ > public void init(ServletConfig config, int panelno) > throws ServletException { > setPanelNo(panelno); > setName("Import CA's Certificate Chain"); > } > > public void init(WizardServlet servlet, ServletConfig config, int panelno, String id) > throws ServletException { > setPanelNo(panelno); > setName("Import CA's Certificate Chain"); > setId(id); > } > > public boolean isSubPanel() { > return false; > } > > public void cleanUp() throws IOException { > } > > public boolean isPanelDone() { > return false; > } > > public PropertySet getUsage() { > PropertySet set = new PropertySet(); > > return set; > } > > /** > * Display the panel. > */ > public void display(HttpServletRequest request, > HttpServletResponse response, > Context context) { > CMS.debug("ImportCACertChain: display"); > context.put("errorString", ""); > context.put("title", "Import CA's Certificate Chain"); > context.put("panel", "admin/console/config/importcachainpanel.vm"); > context.put("import", "true"); > > IConfigStore cs = CMS.getConfigStore(); > > > ISubsystem ca = (ISubsystem) CMS.getSubsystem("ca"); > > if (ca == null) { > context.put("ca", "false"); > } else { > context.put("ca", "true"); > } > > } > > /** > * Checks if the given parameters are valid. > */ > public void validate(HttpServletRequest request, > HttpServletResponse response, > Context context) throws IOException { > } > > /** > * Commit parameter changes > */ > public void update(HttpServletRequest request, > HttpServletResponse response, > Context context) throws IOException { > IConfigStore cs = CMS.getConfigStore(); > > > context.put("errorString", ""); > context.put("title", "Import CA's Certificate Chain"); > context.put("panel", "admin/console/config/importcachainpanel.vm"); > } > > /** > * If validiate() returns false, this method will be called. > */ > public void displayError(HttpServletRequest request, > HttpServletResponse response, > Context context) { > > /* This should never be called */ > context.put("title", "Import CA's Certificate Chain"); > context.put("panel", "admin/console/config/importcachainpanel.vm"); > } >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 440079
:
299924
|
302185
|
304546
|
304547
| 304554