本文整理了Java中org.apache.catalina.connector.Response.setStatus
方法的一些代码示例,展示了Response.setStatus
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Response.setStatus
方法的具体详情如下:
包路径:org.apache.catalina.connector.Response
类名称:Response
方法名:setStatus
[英]Set the HTTP status to be returned with this response.
[中]设置此响应返回的HTTP状态。
代码示例来源:origin: jboss.web/jbossweb
/**
* Set the HTTP status to be returned with this response.
*
* @param status The new HTTP status
*/
public void setStatus(int status) {
setStatus(status, null);
}
代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9
/**
* Set the HTTP status to be returned with this response.
*
* @param status The new HTTP status
*/
@Override
public void setStatus(int status) {
setStatus(status, null);
}
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
/**
* Set the HTTP status to be returned with this response.
*
* @param status The new HTTP status
*/
@Override
public void setStatus(int status) {
setStatus(status, null);
}
代码示例来源:origin: org.glassfish.main.web/web-core
/**
* Set the HTTP status to be returned with this response.
*
* @param status The new HTTP status
*/
public void setStatus(int status) {
setStatus(status, null);
}
代码示例来源:origin: codefollower/Tomcat-Research
/**
* Set the HTTP status to be returned with this response.
*
* @param status The new HTTP status
*/
@Override
public void setStatus(int status) {
setStatus(status, null);
}
代码示例来源:origin: tomcat/catalina
/**
* Set the HTTP status to be returned with this response.
*
* @param status The new HTTP status
*/
public void setStatus(int status) {
setStatus(status, null);
}
代码示例来源:origin: tomcat/catalina
/**
* Reset this response, and specify the values for the HTTP status code
* and corresponding message.
*
* @exception IllegalStateException if this response has already been
* committed
*/
public void reset(int status, String message) {
reset();
setStatus(status, message);
}
代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina
@Override
public void setStatus(int sc) {
if (isCommitted()) {
return;
}
response.setStatus(sc);
}
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
@Override
public void setStatus(int sc, String sm) {
if (isCommitted()) {
return;
}
response.setStatus(sc, sm);
}
代码示例来源:origin: org.glassfish.main.web/web-core
@Override
public void setStatus(int sc) {
// Disallow operation if the object has gone out of scope
if (response == null) {
throw new IllegalStateException(rb.getString(LogFacade.NULL_RESPONSE_OBJECT));
}
if (isCommitted())
return;
response.setStatus(sc);
}
代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core
@Override
public void setStatus(int sc) {
if (isCommitted()) {
return;
}
response.setStatus(sc);
}
代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9
@Override
public void setStatus(int sc) {
if (isCommitted())
return;
response.setStatus(sc);
}
代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib
/* */ public void reset(int status, String message)
/* */ {
/* 916 */ reset();
/* 917 */ setStatus(status, message);
/* */ }
/* */
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
@Override
public void setStatus(int sc) {
if (isCommitted()) {
return;
}
response.setStatus(sc);
}
代码示例来源:origin: org.jboss.web/jbossweb
/**
* Reset this response, and specify the values for the HTTP status code
* and corresponding message.
*
* @exception IllegalStateException if this response has already been
* committed
*/
public void reset(int status, String message) {
reset();
setStatus(status, message);
}
代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina
@Override
public void setStatus(int sc) {
if (isCommitted()) {
return;
}
response.setStatus(sc);
}
代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9
/**
* Reset this response, and specify the values for the HTTP status code
* and corresponding message.
*
* @exception IllegalStateException if this response has already been
* committed
*/
public void reset(int status, String message) {
reset();
setStatus(status, message);
}
代码示例来源:origin: codefollower/Tomcat-Research
@Override
public void setStatus(int sc, String sm) {
if (isCommitted()) {
return;
}
response.setStatus(sc, sm);
}
代码示例来源:origin: codefollower/Tomcat-Research
@Override
public void setStatus(int sc) {
if (isCommitted()) {
return;
}
response.setStatus(sc);
}
代码示例来源:origin: tomcat/catalina
public void setStatus(int sc) {
if (isCommitted())
return;
response.setStatus(sc);
}
内容来源于网络,如有侵权,请联系作者删除!