org.eclipse.californium.core.coap.Request.setURI()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(7.3k)|赞(0)|评价(0)|浏览(275)

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

Request.setURI介绍

[英]Sets this request's CoAP URI.
[中]设置此请求的CoAP URI。

代码示例

代码示例来源:origin: eclipse/californium

  1. private void assignClientUriIfEmpty(Request request) {
  2. // request.getUri() is a computed getter and never returns null so checking destination
  3. if (request.getDestination() == null) {
  4. request.setURI(uri);
  5. }
  6. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a GET request and blocks until the response is available.
  3. *
  4. * @return the CoAP response
  5. */
  6. public CoapResponse get() {
  7. return synchronous(newGet().setURI(uri));
  8. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a GET request and invokes the specified handler when a response
  3. * arrives.
  4. *
  5. * @param handler the Response handler
  6. */
  7. public void get(CoapHandler handler) {
  8. asynchronous(newGet().setURI(uri), handler);
  9. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a DELETE request and waits for the response.
  3. *
  4. * @return the CoAP response
  5. */
  6. public CoapResponse delete() {
  7. return synchronous(newDelete().setURI(uri));
  8. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a DELETE request and invokes the specified handler when a response
  3. * arrives.
  4. *
  5. * @param handler the response handler
  6. */
  7. public void delete(CoapHandler handler) {
  8. asynchronous(newDelete().setURI(uri), handler);
  9. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends an observe request and invokes the specified handler each time
  3. * a notification arrives.
  4. *
  5. * @param handler the Response handler
  6. * @return the CoAP observe relation
  7. */
  8. public CoapObserveRelation observe(CoapHandler handler) {
  9. Request request = newGet().setURI(uri).setObserve();
  10. return observe(request, handler);
  11. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a PUT request with payload and required Content-Format and blocks
  3. * until the response is available.
  4. *
  5. * @param payload the payload
  6. * @param format the Content-Format
  7. * @return the CoAP response
  8. */
  9. public CoapResponse put(byte[] payload, int format) {
  10. return synchronous(format(newPut().setURI(uri).setPayload(payload), format));
  11. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends an observe request with the specified Accept option and invokes the
  3. * specified handler each time a notification arrives.
  4. *
  5. * @param handler the Response handler
  6. * @param accept the Accept option
  7. * @return the CoAP observe relation
  8. */
  9. public CoapObserveRelation observe(CoapHandler handler, int accept) {
  10. Request request = newGet().setURI(uri).setObserve();
  11. return observe(accept(request, accept), handler);
  12. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a PUT request with the specified payload and the specified content
  3. * format and invokes the specified handler when a response arrives.
  4. *
  5. * @param handler the Response handler
  6. * @param payload the payload
  7. * @param format the Content-Format
  8. */
  9. public void put(CoapHandler handler, String payload, int format) {
  10. asynchronous(format(newPut().setURI(uri).setPayload(payload), format), handler);
  11. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a POST request with the specified payload and the specified content
  3. * format and invokes the specified handler when a response arrives.
  4. *
  5. * @param handler the Response handler
  6. * @param payload the payload
  7. * @param format the Content-Format
  8. */
  9. public void post(CoapHandler handler, String payload, int format) {
  10. asynchronous(format(newPost().setURI(uri).setPayload(payload), format), handler);
  11. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a PUT request with the specified payload and the specified content
  3. * format and invokes the specified handler when a response arrives.
  4. *
  5. * @param handler the Response handler
  6. * @param payload the payload
  7. * @param format the Content-Format
  8. */
  9. public void put(CoapHandler handler, byte[] payload, int format) {
  10. asynchronous(format(newPut().setURI(uri).setPayload(payload), format), handler);
  11. }

代码示例来源:origin: eclipse/californium

  1. public static Request createRequest(Code code, String path, LockstepEndpoint server) throws Exception {
  2. Request request = new Request(code);
  3. String uri = String.format("coap://%s:%d/%s", server.getAddress().getHostAddress(), server.getPort(), path);
  4. request.setURI(uri);
  5. return request;
  6. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Sends a PUT request with the If-None-Match option set and blocks until
  3. * the response is available.
  4. *
  5. * @param payload the payload string
  6. * @param format the Content-Format
  7. * @return the CoAP response
  8. */
  9. public CoapResponse putIfNoneMatch(String payload, int format) {
  10. return synchronous(ifNoneMatch(format(newPut().setURI(uri).setPayload(payload), format)));
  11. }

代码示例来源:origin: eclipse/californium

  1. /**
  2. *
  3. * @param handler the Response handler
  4. * @param payload the payload
  5. * @param format the Content-Format
  6. * @param etags the ETags for the If-Match option
  7. */
  8. public void putIfMatch(CoapHandler handler, String payload, int format, byte[] ... etags) {
  9. asynchronous(ifMatch(format(newPut().setURI(uri).setPayload(payload), format), etags), handler);
  10. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testSetURISetsDestination() {
  3. InetSocketAddress dest = InetSocketAddress.createUnresolved("192.168.0.1", 12000);
  4. Request req = Request.newGet().setURI("coap://192.168.0.1:12000");
  5. assertThat(req.getDestination().getHostAddress(), is(dest.getHostString()));
  6. assertThat(req.getDestinationPort(), is(dest.getPort()));
  7. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testSetURISetsDestinationPortBasedOnUriScheme() {
  3. Request req = Request.newGet().setURI("coap://127.0.0.1");
  4. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_PORT));
  5. req = Request.newGet().setURI("coaps://127.0.0.1");
  6. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_SECURE_PORT));
  7. req = Request.newGet().setURI("coap+tcp://127.0.0.1");
  8. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_PORT));
  9. req = Request.newGet().setURI("coaps+tcp://127.0.0.1");
  10. assertThat(req.getDestinationPort(), is(CoAP.DEFAULT_COAP_SECURE_PORT));
  11. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testSetURIDoesNotSetUriHostOptionForIp6Address() {
  3. // use www.google.com's IPv6 address
  4. Request req = Request.newGet().setURI("coap://[2a00:1450:4001:817::2003]");
  5. assertNull(req.getOptions().getUriHost());
  6. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testDiscoveryFiltering() {
  3. final String expectedTree = "</sensors/light>;if=\"sensor\";rt=\"light-lux\"";
  4. Request request = Request.newGet();
  5. request.setURI("coap://localhost/.well-known/core?rt=light-lux");
  6. DiscoveryResource discovery = new DiscoveryResource(root);
  7. String serialized = discovery.discoverTree(root, request.getOptions().getUriQuery());
  8. System.out.println(serialized);
  9. Assert.assertEquals(expectedTree, serialized);
  10. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testDiscoveryMultiFiltering() {
  3. Request request = Request.newGet();
  4. request.setURI("coap://localhost/.well-known/core?rt=light-lux&rt=temprature-cel");
  5. Exchange exchange = new Exchange(request, Origin.REMOTE);
  6. exchange.setRequest(request);
  7. exchange.setEndpoint(new DummyEndpoint());
  8. DiscoveryResource discovery = new DiscoveryResource(root);
  9. discovery.handleRequest(exchange);
  10. System.out.println(exchange.getResponse().getPayloadString());
  11. Assert.assertEquals(ResponseCode.BAD_OPTION, exchange.getResponse().getCode());
  12. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testAdvancedUsesUriFromRequest() throws Exception {
  3. String nonExistingUri = TestTools.getUri(serverEndpoint, "non-existing");
  4. CoapClient client = new CoapClient(nonExistingUri).useExecutor();
  5. Request request = new Request(Code.GET, Type.CON);
  6. String uri = TestTools.getUri(serverEndpoint, TARGET);
  7. request.setURI(uri);
  8. CoapResponse resp = client.advanced(request);
  9. Assert.assertEquals(Type.ACK, resp.advanced().getType());
  10. Assert.assertEquals(CONTENT_1, resp.getResponseText());
  11. }

相关文章