javax.security.jacc.URLPatternSpec.encodeColons()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(4.0k)|赞(0)|评价(0)|浏览(73)

本文整理了Java中javax.security.jacc.URLPatternSpec.encodeColons()方法的一些代码示例,展示了URLPatternSpec.encodeColons()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。URLPatternSpec.encodeColons()方法的具体详情如下:
包路径:javax.security.jacc.URLPatternSpec
类名称:URLPatternSpec
方法名:encodeColons

URLPatternSpec.encodeColons介绍

暂无

代码示例

代码示例来源:origin: org.apache.geronimo.specs/geronimo-jacc_1.1_spec

public WebResourcePermission(HttpServletRequest request) {
  super(URLPatternSpec.encodeColons(request));
  urlPatternSpec = new URLPatternSpec(getName());
  httpMethodSpec = new HTTPMethodSpec(request.getMethod(), HTTPMethodSpec.NA);
}

代码示例来源:origin: org.apache.openejb/javaee-api

public WebResourcePermission(HttpServletRequest request) {
  super(URLPatternSpec.encodeColons(request));
  urlPatternSpec = new URLPatternSpec(getName());
  httpMethodSpec = new HTTPMethodSpec(request.getMethod(), HTTPMethodSpec.NA);
}

代码示例来源:origin: org.apache.geronimo.specs/geronimo-jacc_1.4_spec

public WebResourcePermission(HttpServletRequest request) {
  super(URLPatternSpec.encodeColons(request));
  urlPatternSpec = new URLPatternSpec(getName());
  httpMethodSpec = new HTTPMethodSpec(request.getMethod(), HTTPMethodSpec.NA);
}

代码示例来源:origin: org.apache.openejb/javaee-api

/**
 * Creates a new WebUserDataPermission from the HttpServletRequest object.
 *
 * @param request the HttpServletRequest object corresponding to the
 *                Servlet operation to which the permission pertains. The permission
 *                name is the substring of the requestURI (HttpServletRequest.getRequestURI())
 *                that begins after the contextPath (HttpServletRequest.getContextPath()).
 *                When the substring operation yields the string �/�, the permission is
 *                constructed with the empty string as its name. The HTTP method component
 *                of the permission�s actions is as obtained from HttpServletRequest.getMethod().
 *                The TransportType component of the permission�s actions is determined
 *                by calling HttpServletRequest.isSecure().
 */
public WebUserDataPermission(HttpServletRequest request) {
  super(URLPatternSpec.encodeColons(request));
  urlPatternSpec = new URLPatternSpec(getName());
  httpMethodSpec = new HTTPMethodSpec(request.getMethod(), request.isSecure()? HTTPMethodSpec.CONFIDENTIAL: HTTPMethodSpec.NONE);
}

代码示例来源:origin: org.apache.geronimo.specs/geronimo-jacc_1.4_spec

/**
 * Creates a new WebUserDataPermission from the HttpServletRequest object.
 *
 * @param request the HttpServletRequest object corresponding to the
 *                Servlet operation to which the permission pertains. The permission
 *                name is the substring of the requestURI (HttpServletRequest.getRequestURI())
 *                that begins after the contextPath (HttpServletRequest.getContextPath()).
 *                When the substring operation yields the string �/�, the permission is
 *                constructed with the empty string as its name. The HTTP method component
 *                of the permission�s actions is as obtained from HttpServletRequest.getMethod().
 *                The TransportType component of the permission�s actions is determined
 *                by calling HttpServletRequest.isSecure().
 */
public WebUserDataPermission(HttpServletRequest request) {
  super(URLPatternSpec.encodeColons(request));
  urlPatternSpec = new URLPatternSpec(getName());
  httpMethodSpec = new HTTPMethodSpec(request.getMethod(), request.isSecure()? HTTPMethodSpec.CONFIDENTIAL: HTTPMethodSpec.NONE);
}

代码示例来源:origin: org.apache.geronimo.specs/geronimo-jacc_1.1_spec

/**
 * Creates a new WebUserDataPermission from the HttpServletRequest object.
 *
 * @param request the HttpServletRequest object corresponding to the
 *                Servlet operation to which the permission pertains. The permission
 *                name is the substring of the requestURI (HttpServletRequest.getRequestURI())
 *                that begins after the contextPath (HttpServletRequest.getContextPath()).
 *                When the substring operation yields the string �/�, the permission is
 *                constructed with the empty string as its name. The HTTP method component
 *                of the permission�s actions is as obtained from HttpServletRequest.getMethod().
 *                The TransportType component of the permission�s actions is determined
 *                by calling HttpServletRequest.isSecure().
 */
public WebUserDataPermission(HttpServletRequest request) {
  super(URLPatternSpec.encodeColons(request));
  urlPatternSpec = new URLPatternSpec(getName());
  httpMethodSpec = new HTTPMethodSpec(request.getMethod(), request.isSecure()? HTTPMethodSpec.CONFIDENTIAL: HTTPMethodSpec.NONE);
}

相关文章