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

com.fujieid.jap.http.JapServletRequest Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.fujieid.jap.http;

public interface JapServletRequest {

    /**
     * Returns the name of the scheme used to make this request, for example,
     * http, https, or ftp. Different
     * schemes have different rules for constructing URLs, as noted in RFC 1738.
     *
     * @return a String containing the name of the scheme used to
     *         make this request
     */
    public String getScheme();

    /**
     * Returns a boolean indicating whether this request was made using a secure
     * channel, such as HTTPS.
     *
     * @return a boolean indicating if the request was made using a secure
     *         channel
     */
    public boolean isSecure();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy