当前位置: 首页>>代码示例>>Java>>正文


Java Request.getMethod方法代码示例

本文整理汇总了Java中org.apache.catalina.connector.Request.getMethod方法的典型用法代码示例。如果您正苦于以下问题:Java Request.getMethod方法的具体用法?Java Request.getMethod怎么用?Java Request.getMethod使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.catalina.connector.Request的用法示例。


在下文中一共展示了Request.getMethod方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addElement

import org.apache.catalina.connector.Request; //导入方法依赖的package包/类
@Override
public void addElement(StringBuilder buf, Date date, Request request, Response response, long time) {
	if (request != null) {
		String method = request.getMethod();
		if (method == null) {
			// No method means no request line
			buf.append('-');
		} else {
			buf.append(request.getMethod());
			buf.append(' ');
			buf.append(request.getRequestURI());
			if (request.getQueryString() != null) {
				buf.append('?');
				buf.append(request.getQueryString());
			}
			buf.append(' ');
			buf.append(request.getProtocol());
		}
	} else {
		buf.append('-');
	}
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:23,代码来源:AccessLogValve.java

示例2: parse

import org.apache.catalina.connector.Request; //导入方法依赖的package包/类
public boolean parse(Request request, String authorization) {
    // Validate the authorization credentials format
    if (authorization == null) {
        return false;
    }

    Map<String,String> directives;
    try {
        directives = HttpParser.parseAuthorizationDigest(
                new StringReader(authorization));
    } catch (IOException e) {
        return false;
    }

    if (directives == null) {
        return false;
    }

    method = request.getMethod();
    userName = directives.get("username");
    realmName = directives.get("realm");
    nonce = directives.get("nonce");
    nc = directives.get("nc");
    cnonce = directives.get("cnonce");
    qop = directives.get("qop");
    uri = directives.get("uri");
    response = directives.get("response");
    opaqueReceived = directives.get("opaque");

    return true;
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:32,代码来源:DigestAuthenticator.java

示例3: addElement

import org.apache.catalina.connector.Request; //导入方法依赖的package包/类
@Override
public void addElement(StringBuilder buf, Date date, Request request,
        Response response, long time) {
    if (request != null) {
        String method = request.getMethod();
        if (method == null) {
            // No method means no request line
            buf.append('-');
        } else {
            buf.append(request.getMethod());
            buf.append(' ');
            buf.append(request.getRequestURI());
            if (request.getQueryString() != null) {
                buf.append('?');
                buf.append(request.getQueryString());
            }
            buf.append(' ');
            buf.append(request.getProtocol());
        }
    } else {
        buf.append('-');
    }
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:24,代码来源:AccessLogValve.java

示例4: parse

import org.apache.catalina.connector.Request; //导入方法依赖的package包/类
public boolean parse(Request request, String authorization) {
	// Validate the authorization credentials format
	if (authorization == null) {
		return false;
	}

	Map<String, String> directives;
	try {
		directives = HttpParser.parseAuthorizationDigest(new StringReader(authorization));
	} catch (IOException e) {
		return false;
	}

	if (directives == null) {
		return false;
	}

	method = request.getMethod();
	userName = directives.get("username");
	realmName = directives.get("realm");
	nonce = directives.get("nonce");
	nc = directives.get("nc");
	cnonce = directives.get("cnonce");
	qop = directives.get("qop");
	uri = directives.get("uri");
	response = directives.get("response");
	opaqueReceived = directives.get("opaque");

	return true;
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:31,代码来源:DigestAuthenticator.java

示例5: findSecurityConstraints

import org.apache.catalina.connector.Request; //导入方法依赖的package包/类
/**
 * Return the SecurityConstraints configured to guard the request URI for
 * this request, or <code>null</code> if there is no such constraint.
 *
 * @param request Request we are processing
 * @param context Context the Request is mapped to
 */
public SecurityConstraint [] findSecurityConstraints(Request request,
                                                 Context context) {
    ArrayList<SecurityConstraint> results = null;
    // Are there any defined security constraints?
    SecurityConstraint constraints[] = context.findConstraints();
    if ((constraints == null) || (constraints.length == 0)) {
        if (context.getLogger().isDebugEnabled())
            context.getLogger().debug("  No applicable constraints defined");
        return (null);
    }

    // Check each defined security constraint
    String uri = request.getDecodedRequestURI();
    String contextPath = request.getContextPath();
    if (contextPath.length() > 0)
        uri = uri.substring(contextPath.length());
    uri = RequestUtil.URLDecode(uri); // Before checking constraints
    String method = request.getMethod();
    for (int i = 0; i < constraints.length; i++) {
        if (context.getLogger().isDebugEnabled())
            context.getLogger().debug("  Checking constraint '" + constraints[i] +
                "' against " + method + " " + uri + " --> " +
                constraints[i].included(uri, method));
        if (constraints[i].included(uri, method)) {
            if(results == null) {
                results = new ArrayList<SecurityConstraint>();
            }
            results.add(constraints[i]);
        }
    }

    // No applicable security constraint was found
    if (context.getLogger().isDebugEnabled())
        context.getLogger().debug("  No applicable constraint located");
    if(results == null)
        return null;
    SecurityConstraint [] array = new SecurityConstraint[results.size()];
    System.arraycopy(results.toArray(), 0, array, 0, array.length);
    return array;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:48,代码来源:JAASMemoryLoginModule.java


注:本文中的org.apache.catalina.connector.Request.getMethod方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。