csrdownload.java
来自「这是linux下ssl vpn的实现程序」· Java 代码 · 共 33 行
JAVA
33 行
package com.sslexplorer.keystore;
import java.io.File;
import org.apache.struts.action.ActionForward;
import com.sslexplorer.core.FileDownload;
/**
* <p>
* Extension of {@link com.sslexplorer.core.FileDownload} for
* downloading a CSR.
*
* @author James D Robinson <a href="mailto:james@3sp.com"><james@3sp.com></a>
*
*/
public class CSRDownload extends FileDownload {
/**
* @param file file
* @param filename filename
* @param mimeType The mimeType
* @param forward The forward to go to after the operation.
* @param messageKey The message key
* @param messageResourcesKey The message resource key.
* @param singleDownloadOnly single download only
*/
public CSRDownload(File file, String filename, String mimeType, ActionForward forward, String messageKey,
String messageResourcesKey, boolean singleDownloadOnly) {
super(file, filename, mimeType, forward, messageKey, messageResourcesKey, null, null, null, null, null, singleDownloadOnly);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?