public final class AmqpAddress extends Object
Create and retrieve address
AmqpAddress amqpAddress = new AmqpAddress("my-address");
// Retrieve Adderss
String address = amqpAddress.toString();
System.out.println("Address " + address);
| Constructor and Description |
|---|
AmqpAddress(String address)
Creates the
AmqpAddress with given address. |
public AmqpAddress(String address)
AmqpAddress with given address.address - The address to set for this instance.NullPointerException - if address is null.Copyright © 2021 Microsoft Corporation. All rights reserved.