All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.objectweb.jonas.ant.jonasbase.web.Https Maven / Gradle / Ivy

The newest version!
/**
 * JOnAS: Java(TM) Open Application Server
 * Copyright (C) 2006 Bull S.A.S.
 * Contact: [email protected]
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 * USA
 *
 * --------------------------------------------------------------------------
 * $Id: Https.java 7939 2006-01-25 17:35:15Z sauthieg $
 * --------------------------------------------------------------------------
 */
package org.objectweb.jonas.ant.jonasbase.web;

/**
 * Configure an HTTPS Connector for Tomcat/Jetty
 *
 *
 * @author Guillaume Sauthier
 */
public class Https {

    /**
     * Sun VM name
     */
    public static final String SUN_VM = "sun";

    /**
     * IBM VM name
     */
    public static final String IBM_VM = "ibm";

    /**
     * Default VM name
     */
    private static final String DEFAULT_VM = SUN_VM;

    /**
     * Default HTTPS Port
     */
    public static final String DEFAULT_PORT = "9043";

    /**
     * user specified port value
     */
    private String port = DEFAULT_PORT;

    /**
     * keystore filename
     */
    private String keystoreFile = null;

    /**
     * keystore password
     */
    private String keystorePass = null;

    /**
     * key password (only for Jetty)
     */
    private String keyPassword = null;

    /**
     * Targeted VM (Only used for Jetty HTTPS Listener)
     */
    private String vm = DEFAULT_VM;

    /**
     * @return Returns the keystore.
     */
    public String getKeystoreFile() {
        return keystoreFile;
    }

    /**
     * @param keystore The keystore to set.
     */
    public void setKeystoreFile(String keystore) {
        this.keystoreFile = keystore;
    }

    /**
     * @return Returns the password.
     */
    public String getKeystorePass() {
        return keystorePass;
    }

    /**
     * @param password The password to set.
     */
    public void setKeystorePass(String password) {
        this.keystorePass = password;
    }

    /**
     * @return Returns the port.
     */
    public String getPort() {
        return port;
    }

    /**
     * @param port The port to set.
     */
    public void setPort(String port) {
        this.port = port;
    }

    /**
     * @return Returns the vm.
     */
    public String getVm() {
        return vm;
    }

    /**
     * @param vm The vm to set.
     */
    public void setVm(String vm) {
        this.vm = vm;
    }

    /**
     * @return Returns the keyPassword.
     */
    public String getKeyPassword() {
        return keyPassword;
    }

    /**
     * @param keyPassword The keyPassword to set.
     */
    public void setKeyPassword(String keyPassword) {
        this.keyPassword = keyPassword;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy