org.apache.qpid.proton.message.Message.setContentType()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(168)

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

Message.setContentType介绍

暂无

代码示例

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

  1. if (Strings.isNullOrEmpty(message.getContentType()) && String.class.isInstance(prop.getValue())) {
  2. message.setContentType((String) prop.getValue());

代码示例来源:origin: org.eclipse.hono/hono-service-base

  1. if (Strings.isNullOrEmpty(message.getContentType()) && String.class.isInstance(prop.getValue())) {
  2. message.setContentType((String) prop.getValue());

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

  1. /**
  2. * Set the payload of the message using a {@link Data} section.
  3. * <p>
  4. * If the payload is {@code null}, then neither the payload, nor content type will be set.
  5. * </p>
  6. *
  7. * @param message The message to update.
  8. * @param contentType An optional content type.
  9. * @param payload The optional message payload.
  10. *
  11. * @throws NullPointerException If the parameter {@code message} was {@code null}.
  12. */
  13. public static void setPayload(final Message message, final String contentType, final byte[] payload) {
  14. Objects.requireNonNull(message);
  15. if (contentType != null) {
  16. message.setContentType(contentType);
  17. }
  18. if (payload != null) {
  19. message.setBody(new Data(new Binary(payload)));
  20. }
  21. }

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

  1. /**
  2. * Set the payload of the message using a {@link Data} section.
  3. * <p>
  4. * If the payload is {@code null}, then neither the payload, nor content type will be set.
  5. * </p>
  6. *
  7. * @param message The message to update.
  8. * @param contentType An optional content type.
  9. * @param payload The optional message payload.
  10. *
  11. * @throws NullPointerException If the parameter {@code message} was {@code null}.
  12. */
  13. public static void setPayload(final Message message, final String contentType, final byte[] payload) {
  14. Objects.requireNonNull(message);
  15. if (contentType != null) {
  16. message.setContentType(contentType);
  17. }
  18. if (payload != null) {
  19. message.setBody(new Data(new Binary(payload)));
  20. }
  21. }

代码示例来源:origin: com.ibm.mqlight/mqlight-api

  1. @Override
  2. public <T> boolean sendJson(String topic, String json,
  3. Map<String, Object> properties, SendOptions sendOptions,
  4. CompletionListener<T> listener, T context)
  5. throws StoppedException {
  6. final String methodName = "sendJson";
  7. logger.entry(this, methodName, topic, json, properties, sendOptions, listener, context);
  8. org.apache.qpid.proton.message.Message protonMsg = Proton.message();
  9. protonMsg.setBody(new AmqpValue(json));
  10. protonMsg.setContentType("application/json");
  11. final boolean result = send(topic, protonMsg, properties, sendOptions == null ? defaultSendOptions : sendOptions, listener, context);
  12. logger.exit(this, methodName, result);
  13. return result;
  14. }

代码示例来源:origin: Azure/azure-event-hubs-java

  1. break;
  2. case AmqpConstants.AMQP_PROPERTY_CONTENT_TYPE:
  3. amqpMessage.setContentType((String) systemProperty.getValue());
  4. break;
  5. case AmqpConstants.AMQP_PROPERTY_CONTENT_ENCODING:

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

  1. /**
  2. * Verifies that the registered default content type is not set on a downstream message
  3. * that already contains a content type.
  4. */
  5. @Test
  6. public void testAddPropertiesDoesNotAddDefaultContentType() {
  7. final Message message = ProtonHelper.message();
  8. message.setContentType("application/existing");
  9. adapter.addProperties(message, newRegistrationAssertionResult("token", "application/hono"));
  10. assertThat(MessageHelper.getRegistrationAssertion(message), is("token"));
  11. assertThat(message.getContentType(), is("application/existing"));
  12. }

代码示例来源:origin: org.eclipse.hono/hono-service-base

  1. msg.setContentType(contentType);
  2. if (timeUntilDisconnect != null) {
  3. MessageHelper.addTimeUntilDisconnect(msg, timeUntilDisconnect);

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

  1. msg.setContentType(contentType);
  2. if (timeUntilDisconnect != null) {
  3. MessageHelper.addTimeUntilDisconnect(msg, timeUntilDisconnect);

代码示例来源:origin: org.eclipse.hono/hono-service-base

  1. message.setContentType(CONTENT_TYPE_OCTET_STREAM);

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

  1. message.setContentType(CONTENT_TYPE_OCTET_STREAM);

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

  1. /**
  2. * Verifies that a message containing a subject that does not represent
  3. * a Credentials API operation does not pass the filter.
  4. */
  5. @Test
  6. public void testVerifyFailsForUnknownAction() {
  7. // GIVEN a message with an unsupported subject
  8. final Message msg = givenAValidMessageWithoutBody(CredentialsConstants.CredentialsAction.unknown);
  9. msg.setBody(new AmqpValue(BILLIE_HASHED_PASSWORD));
  10. msg.setContentType("application/json");
  11. // WHEN receiving the message via a link with any tenant
  12. final boolean filterResult = CredentialsMessageFilter.verify(target, msg);
  13. // THEN message validation fails
  14. assertFalse(filterResult);
  15. }

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

  1. /**
  2. * Verifies that a message containing a non Data section body
  3. * does not pass the filter.
  4. */
  5. @Test
  6. public void testVerifyFailsForNonDataSectionBody() {
  7. // GIVEN a message with an unsupported subject
  8. final Message msg = givenAValidMessageWithoutBody(CredentialsConstants.CredentialsAction.get);
  9. msg.setBody(new AmqpValue(BILLIE_HASHED_PASSWORD.encode()));
  10. msg.setContentType("application/json");
  11. // WHEN receiving the message via a link with any tenant
  12. final boolean filterResult = CredentialsMessageFilter.verify(target, msg);
  13. // THEN message validation fails
  14. assertFalse(filterResult);
  15. }

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

  1. /**
  2. * Verifies that a message that does not contain a message-id nor correlation-id
  3. * does not pass the filter.
  4. */
  5. @Test
  6. public void testVerifyFailsForMissingCorrelationId() {
  7. // GIVEN a message with an unsupported subject
  8. final Message msg = ProtonHelper.message();
  9. msg.setReplyTo("reply");
  10. msg.setBody(new AmqpValue(BILLIE_HASHED_PASSWORD));
  11. msg.setContentType("application/json");
  12. // WHEN receiving the message via a link with any tenant
  13. final boolean filterResult = CredentialsMessageFilter.verify(target, msg);
  14. // THEN message validation fails
  15. assertFalse(filterResult);
  16. }

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

  1. /**
  2. * Verifies that a valid message passes the filter.
  3. */
  4. @Test
  5. public void testVerifySucceedsForValidGetAction() {
  6. // GIVEN a credentials message for user billie
  7. final Message msg = givenAValidMessageWithoutBody(CredentialsConstants.CredentialsAction.get);
  8. msg.setBody(new Data(new Binary(BILLIE_HASHED_PASSWORD.toBuffer().getBytes())));
  9. msg.setContentType("application/json");
  10. // WHEN receiving the message via a link with any tenant
  11. final boolean filterResult = CredentialsMessageFilter.verify(target, msg);
  12. // THEN message validation succeeds
  13. assertTrue(filterResult);
  14. }

代码示例来源:origin: Azure/azure-service-bus-java

  1. amqpMessage.setContentType(brokeredMessage.getContentType());
  2. amqpMessage.setCorrelationId(brokeredMessage.getCorrelationId());
  3. amqpMessage.setSubject(brokeredMessage.getLabel());

代码示例来源:origin: apache/activemq-artemis

  1. message.getWrappedMessage().setContentType("text/plain");
  2. message.getWrappedMessage().setBody(new Data(new Binary(messageText.getBytes(StandardCharsets.UTF_8))));

代码示例来源:origin: io.vertx/vertx-amqp-bridge

  1. protonMsg.setGroupSequence(testGroupSeq);
  2. protonMsg.setReplyToGroupId(testReplyToGroupId);
  3. protonMsg.setContentType(testContentType);
  4. protonMsg.setContentEncoding(testContentEncoding);
  5. protonMsg.setCreationTime(testCreationTime);

相关文章