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

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

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

Request.getScheme介绍

[英]Gets the scheme.
[中]得到了这个计划。

代码示例

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

  1. /**
  2. * Reactive Observe cancellation: Cancel the observe relation by forgetting,
  3. * which will trigger a RST. For TCP, {{@link #proactiveCancel()} will be
  4. * executed.
  5. */
  6. public void reactiveCancel() {
  7. Request request = this.request;
  8. if (CoAP.isTcpScheme(request.getScheme())) {
  9. LOGGER.log(Level.INFO, "Change to cancel the observe {0} proactive over TCP.", request.getTokenString());
  10. proactiveCancel();
  11. } else {
  12. // cancel old ongoing request
  13. cancel();
  14. }
  15. }

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

  1. /**
  2. * Returns the effective endpoint that the specified request is supposed to
  3. * be sent over. If an endpoint has explicitly been set to this CoapClient,
  4. * this endpoint will be used. If no endpoint has been set, the client will
  5. * effectively use a default endpoint of the {@link EndpointManager}.
  6. *
  7. * @param request the request to be sent
  8. * @return the effective endpoint that the request is going o be sent over.
  9. */
  10. protected Endpoint getEffectiveEndpoint(Request request) {
  11. Endpoint myEndpoint = getEndpoint();
  12. // custom endpoint
  13. if (myEndpoint != null) return myEndpoint;
  14. // default endpoints
  15. if (CoAP.COAP_SECURE_URI_SCHEME.equals(request.getScheme())) {
  16. // this is the case when secure coap is supposed to be used
  17. return EndpointManager.getEndpointManager().getDefaultSecureEndpoint();
  18. } else if (CoAP.COAP_TCP_URI_SCHEME.equals(request.getScheme())) {
  19. // Running over TCP.
  20. return EndpointManager.getEndpointManager().getDefaultTcpEndpoint();
  21. } else if (CoAP.COAP_SECURE_TCP_URI_SCHEME.equals(request.getScheme())) {
  22. // Running over TLS.
  23. return EndpointManager.getEndpointManager().getDefaultSecureTcpEndpoint();
  24. } else {
  25. // this is the normal case
  26. return EndpointManager.getEndpointManager().getDefaultEndpoint();
  27. }
  28. }

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

  1. request.getOptions().setContentFormat(MediaTypeRegistry.TEXT_PLAIN);
  2. if (request.getScheme().equals(CoAP.COAP_SECURE_URI_SCHEME)) {

代码示例来源:origin: org.eclipse.californium/californium-core

  1. /**
  2. * Returns the effective endpoint that the specified request is supposed to
  3. * be sent over. If an endpoint has explicitly been set to this CoapClient,
  4. * this endpoint will be used. If no endpoint has been set, the client will
  5. * effectively use a default endpoint of the {@link EndpointManager}.
  6. *
  7. * @param request the request to be sent
  8. * @return the effective endpoint that the request is going o be sent over.
  9. */
  10. protected Endpoint getEffectiveEndpoint(Request request) {
  11. Endpoint myEndpoint = getEndpoint();
  12. // custom endpoint
  13. if (myEndpoint != null) return myEndpoint;
  14. // default endpoints
  15. if (CoAP.COAP_SECURE_URI_SCHEME.equals(request.getScheme())) {
  16. // this is the case when secure coap is supposed to be used
  17. return EndpointManager.getEndpointManager().getDefaultSecureEndpoint();
  18. } else {
  19. // this is the normal case
  20. return EndpointManager.getEndpointManager().getDefaultEndpoint();
  21. }
  22. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. /**
  2. * Sends the request over the default endpoint to its destination and
  3. * expects a response back.
  4. * @return this request
  5. */
  6. public Request send() {
  7. validateBeforeSending();
  8. if (CoAP.COAP_SECURE_URI_SCHEME.equals(getScheme())) {
  9. // This is the case when secure coap is supposed to be used
  10. EndpointManager.getEndpointManager().getDefaultSecureEndpoint().sendRequest(this);
  11. } else {
  12. // This is the normal case
  13. EndpointManager.getEndpointManager().getDefaultEndpoint().sendRequest(this);
  14. }
  15. return this;
  16. }

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

  1. if (CoAP.isSupportedScheme(getScheme())) {
  2. if (CoAP.getDefaultPort(getScheme()) == port) {
  3. port = -1;
  4. String query = getOptions().getURIQueryCount() > 0 ? getOptions().getUriQueryString() : null;
  5. try {
  6. URI uri = new URI(getScheme(), null, host, port, path, query, null);

代码示例来源:origin: org.eclipse.californium/californium-core

  1. if (CoAP.isSupportedScheme(getScheme())) {
  2. if (CoAP.getDefaultPort(getScheme()) == port) {
  3. port = -1;
  4. String query = getOptions().getURIQueryCount() > 0 ? getOptions().getUriQueryString() : null;
  5. try {
  6. URI uri = new URI(getScheme(), null, host, port, path, query, null);

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

  1. /**
  2. * Sends the request over the default endpoint to its destination and
  3. * expects a response back.
  4. *
  5. * @return this request
  6. * @throws NullPointerException if this request has no destination set.
  7. */
  8. public Request send() {
  9. validateBeforeSending();
  10. if (CoAP.COAP_SECURE_URI_SCHEME.equals(getScheme())) {
  11. // This is the case when secure coap is supposed to be used
  12. EndpointManager.getEndpointManager().getDefaultSecureEndpoint().sendRequest(this);
  13. } else {
  14. // This is the normal case
  15. EndpointManager.getEndpointManager().getDefaultEndpoint().sendRequest(this);
  16. }
  17. return this;
  18. }

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

  1. @Test
  2. public void testStandardSchemeIsSetOnIncomingRequest() throws Exception {
  3. latch = new CountDownLatch(1);
  4. RawData inboundRequest = RawData.inbound(getSerializedRequest(), SOURCE_ADDRESS, null, null, false);
  5. connector.receiveMessage(inboundRequest);
  6. assertTrue(latch.await(2, TimeUnit.SECONDS));
  7. assertThat(receivedRequests.get(0).getScheme(), is(CoAP.COAP_URI_SCHEME));
  8. }

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

  1. @Test
  2. public void testSecureSchemeIsSetOnIncomingRequest() throws Exception {
  3. latch = new CountDownLatch(1);
  4. CorrelationContext secureCtx = new DtlsCorrelationContext("session", "1", "CIPHER");
  5. RawData inboundRequest = RawData.inbound(getSerializedRequest(), SOURCE_ADDRESS, null, secureCtx, false);
  6. connector.receiveMessage(inboundRequest);
  7. assertTrue(latch.await(2, TimeUnit.SECONDS));
  8. assertThat(receivedRequests.get(0).getScheme(), is(CoAP.COAP_SECURE_URI_SCHEME));
  9. }

相关文章