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

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

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

UriBuilder.setScheme介绍

暂无

代码示例

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

@Test
public void justSchemeAndAuthority() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org");
 assertEquals("http://apache.org", builder.toString());
}

代码示例来源:origin: org.gatein.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 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: com.lmco.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 noAuthorityUsed() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setPath("/shindig")
   .setQuery("hello=world")
   .setFragment("foo");
 assertEquals("http:/shindig?hello=world#foo", builder.toString());
}

代码示例来源:origin: org.apache.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-gadgets

@Test(expected=IllegalArgumentException.class)
public void loadFileNothingAvailable() throws Exception {
 Uri nilUri = new UriBuilder().setScheme("file").setPath("/does/not/exist.js").toUri();
 loader.load(nilUri, null);
 fail("Should have failed indicating could not find: " + nilUri.toString());
}

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

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

代码示例来源:origin: org.gatein.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.gatein.shindig/shindig-common

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

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

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

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

@Test
public void fragmentStringIsUnescaped() {
 UriBuilder builder = new UriBuilder()
   .setScheme("http")
   .setAuthority("apache.org")
   .setPath("/shindig")
   .setFragment("hello+world=world%26bar");
 assertEquals("world&bar", builder.getFragmentParameter("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 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.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 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());
}

代码示例来源: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());
}

代码示例来源:origin: com.lmco.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());
}

相关文章