com.fujieid.jap.http.JapServletRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jap-http Show documentation
Show all versions of jap-http Show documentation
jap-http servlet interface
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