org.apache.shindig.common.uri.UriBuilder.setPath()方法的使用及代码示例

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

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

UriBuilder.setPath介绍

[英]Sets the path component of the Uri.
[中]设置Uri的路径组件。

代码示例

代码示例来源:origin: org.apache.shindig/shindig-gadgets

static Uri getComponentUri(String str) {
 return (str.startsWith("res://")) ?
  new UriBuilder().setScheme(RESOURCE_SCHEME).setPath(str.substring(6)).toUri() :
  Uri.parse(str);
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void justPath() {
 UriBuilder builder = new UriBuilder()
   .setPath("/shindig");
 assertEquals("/shindig", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void iterableQueryParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .putQueryParameter("hello", Lists.newArrayList("world", "monde"))
   .setFragment("foo");
 assertEquals("http://apache.org/shindig?hello=world&hello=monde#foo", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void iterableFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .putFragmentParameter("hello", Lists.newArrayList("world", "monde"))
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=monde", builder.toString());
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void iterableFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .putFragmentParameter("hello", Lists.newArrayList("world", "monde"))
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=monde", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-gadgets

@Test(expected = GadgetException.class)
public void missingContainerParamChained() throws Exception {
 String host = "host.com";
 String path = "/proxy/" + DefaultProxyUriManager.CHAINED_PARAMS_TOKEN + "/path";
 DefaultProxyUriManager manager = makeManager(host, path, null);
 Uri testUri = new UriBuilder().setAuthority(host).setPath(
   "/proxy/refresh=123/path/http://foo.com").toUri();
 manager.process(testUri);
}

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void hostRelativePaths() {
 UriBuilder builder = new UriBuilder()
   .setPath("/shindig")
   .setQuery("hello=world")
   .setFragment("foo");
 assertEquals("/shindig?hello=world#foo", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void noSchemeUsed() {
 UriBuilder builder = new UriBuilder()
   .setAuthority("apache.org")
   .setPath("/shindig")
   .setQuery("hello=world")
   .setFragment("foo");
 assertEquals("//apache.org/shindig?hello=world#foo", builder.toString());
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void noQueryUsed() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .setFragment("foo");
 assertEquals("http://apache.org/shindig#foo", builder.toString());
}

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void noSchemeUsed() {
 UriBuilder builder = new UriBuilder()
   .setAuthority("apache.org")
   .setPath("/shindig")
   .setQuery("hello=world")
   .setFragment("foo");
 assertEquals("//apache.org/shindig?hello=world#foo", builder.toString());
}

代码示例来源:origin: com.lmco.shindig/shindig-common

@Test
public void queryStringIsUnescaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .setQuery("hello+world=world%26bar");
 assertEquals("world&bar", builder.getQueryParameter("hello world"));
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void addSingleFragmentParameter() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world", builder.toString());
}

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void addSingleFragmentParameter() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world", builder.toString());
}

代码示例来源:origin: com.lmco.shindig/shindig-common

@Test
public void allPartsUsed() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .setQuery("hello=world")
   .setFragment("foo");
 assertEquals("http://apache.org/shindig?hello=world#foo", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void addTwoQueryParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addQueryParameter("hello", "world")
   .addQueryParameter("foo", "bar")
   .setFragment("foo");
 assertEquals("http://apache.org/shindig?hello=world&foo=bar#foo", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void addTwoFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("foo", "bar")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&foo=bar", builder.toString());
}

代码示例来源:origin: org.gatein.shindig/shindig-common

@Test
public void addIdenticalFragmentParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addFragmentParameter("hello", "world")
   .addFragmentParameter("hello", "goodbye")
   .setQuery("foo");
 assertEquals("http://apache.org/shindig?foo#hello=world&hello=goodbye", builder.toString());
}

代码示例来源:origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void addIdenticalParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addQueryParameter("hello", "world")
   .addQueryParameter("hello", "goodbye")
   .setFragment("foo");
 assertEquals("http://apache.org/shindig?hello=world&hello=goodbye#foo", builder.toString());
}

代码示例来源:origin: com.lmco.shindig/shindig-common

@Test
public void addIdenticalParameters() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addQueryParameter("hello", "world")
   .addQueryParameter("hello", "goodbye")
   .setFragment("foo");
 assertEquals("http://apache.org/shindig?hello=world&hello=goodbye#foo", builder.toString());
}

代码示例来源:origin: org.apache.shindig/shindig-common

@Test
public void queryParamsAreEscaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .addQueryParameter("hello world", "foo&bar")
   .setFragment("foo");
 assertEquals("http://apache.org/shindig?hello+world=foo%26bar#foo", builder.toString());
 assertEquals("hello+world=foo%26bar", builder.getQuery());
}

相关文章