本文整理汇总了Java中org.springframework.extensions.webscripts.WebScriptRequest.getServiceMatch方法的典型用法代码示例。如果您正苦于以下问题:Java WebScriptRequest.getServiceMatch方法的具体用法?Java WebScriptRequest.getServiceMatch怎么用?Java WebScriptRequest.getServiceMatch使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.extensions.webscripts.WebScriptRequest
的用法示例。
在下文中一共展示了WebScriptRequest.getServiceMatch方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: executeImpl
import org.springframework.extensions.webscripts.WebScriptRequest; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
protected Map<String, Object> executeImpl(final WebScriptRequest req, final Status status, final Cache cache)
{
final Match serviceMatch = req.getServiceMatch();
final Map<String, String> templateVars = serviceMatch.getTemplateVars();
final String storeProtocol = templateVars.get(TEMPLATE_STORE_PROTOCOL);
final String storeIdentifier = templateVars.get(TEMPLATE_STORE_IDENTIFIER);
final String uuid = templateVars.get(TEMPLATE_UUID);
final StoreRef store = new StoreRef(storeProtocol, storeIdentifier);
final NodeRef node = new NodeRef(store, uuid);
this.validateArchivedItem(node);
final Map<String, Object> model = this.executeImpl(req, node, status, cache);
return model;
}
示例2: getDispatcher
import org.springframework.extensions.webscripts.WebScriptRequest; //导入方法依赖的package包/类
@Override
public CMISDispatcher getDispatcher(WebScriptRequest req)
{
CMISDispatcher dispatcher = null;
Match match = req.getServiceMatch();
Map<String, String> templateVars = match.getTemplateVars();
String bindingStr = templateVars.get("binding");
String apiVersion = templateVars.get("apiVersion");
if(bindingStr != null && apiVersion != null)
{
Binding binding = null;
try
{
binding = Binding.valueOf(bindingStr);
}
catch(IllegalArgumentException e)
{
// nothing to do, binding remains null
}
if(binding != null)
{
Endpoint endpoint = new Endpoint(binding, apiVersion);
dispatcher = registry.get(endpoint);
}
else
{
// TODO
}
}
return dispatcher;
}
示例3: CMISHttpServletRequest
import org.springframework.extensions.webscripts.WebScriptRequest; //导入方法依赖的package包/类
public CMISHttpServletRequest(WebScriptRequest req, String serviceName, BaseUrlGenerator baseUrlGenerator, Binding binding, Descriptor currentDescriptor,
TenantAdminService tenantAdminService)
{
this.req = req;
this.serviceName = serviceName;
this.baseUrlGenerator = baseUrlGenerator;
this.binding = binding;
String pathInfo = req.getPathInfo();
WebScriptRequest baseReq = getBaseRequest(req);
if(!pathInfo.startsWith("/cmis") && (baseReq instanceof TenantWebScriptServletRequest))
{
TenantWebScriptServletRequest servletReq = (TenantWebScriptServletRequest)baseReq;
String tenant = servletReq.getTenant();
if(tenant.equalsIgnoreCase(TenantUtil.DEFAULT_TENANT))
{
String user = AuthenticationUtil.getFullyAuthenticatedUser();
String domain = tenantAdminService.getUserDomain(user);
if(domain == null || domain.equals(TenantService.DEFAULT_DOMAIN))
{
this.networkId = tenant;
}
else
{
this.networkId = domain;
}
}
else
{
this.networkId = tenant;
}
}
Match match = req.getServiceMatch();
Map<String, String> templateVars = match.getTemplateVars();
HttpServletRequest httpReq = WebScriptServletRuntime.getHttpServletRequest(req);
this.httpReq = httpReq;
this.operation = templateVars.get("operation");
this.id = templateVars.get("id");
addAttributes();
}