Package | Description |
---|---|
com.rabbitmq.client |
The client API proper: classes and interfaces representing the AMQP
connections, channels, and wire-protocol framing descriptors.
|
com.rabbitmq.client.impl |
Implementations of interfaces specified in the client API, and their supporting classes.
|
Modifier and Type | Method and Description |
---|---|
LongString |
AMQP.Connection.Secure.getChallenge() |
LongString |
AMQP.Channel.OpenOk.getChannelId() |
LongString |
AMQP.Connection.Start.getLocales() |
LongString |
AMQP.Connection.Start.getMechanisms() |
LongString |
AMQP.Connection.UpdateSecret.getNewSecret() |
LongString |
AMQP.Connection.StartOk.getResponse() |
LongString |
AMQP.Connection.SecureOk.getResponse() |
LongString |
SaslMechanism.handleChallenge(LongString challenge,
String username,
String password)
Handle one round of challenge-response
|
Modifier and Type | Method and Description |
---|---|
AMQP.Connection.Secure.Builder |
AMQP.Connection.Secure.Builder.challenge(LongString challenge) |
AMQP.Channel.OpenOk.Builder |
AMQP.Channel.OpenOk.Builder.channelId(LongString channelId) |
LongString |
SaslMechanism.handleChallenge(LongString challenge,
String username,
String password)
Handle one round of challenge-response
|
AMQP.Connection.Start.Builder |
AMQP.Connection.Start.Builder.locales(LongString locales) |
AMQP.Connection.Start.Builder |
AMQP.Connection.Start.Builder.mechanisms(LongString mechanisms) |
AMQP.Connection.UpdateSecret.Builder |
AMQP.Connection.UpdateSecret.Builder.newSecret(LongString newSecret) |
AMQP.Connection.StartOk.Builder |
AMQP.Connection.StartOk.Builder.response(LongString response) |
AMQP.Connection.SecureOk.Builder |
AMQP.Connection.SecureOk.Builder.response(LongString response) |
Modifier and Type | Method and Description |
---|---|
static LongString |
LongStringHelper.asLongString(byte[] bytes)
Converts a binary block to a LongString.
|
static LongString |
LongStringHelper.asLongString(String string)
Converts a String to a LongString using UTF-8 encoding.
|
LongString |
AMQImpl.Connection.Secure.getChallenge() |
LongString |
AMQImpl.Channel.OpenOk.getChannelId() |
LongString |
AMQImpl.Connection.Start.getLocales() |
LongString |
AMQImpl.Connection.Start.getMechanisms() |
LongString |
AMQImpl.Connection.UpdateSecret.getNewSecret() |
LongString |
AMQImpl.Connection.StartOk.getResponse() |
LongString |
AMQImpl.Connection.SecureOk.getResponse() |
LongString |
CRDemoMechanism.handleChallenge(LongString challenge,
String username,
String password) |
LongString |
PlainMechanism.handleChallenge(LongString challenge,
String username,
String password) |
LongString |
ExternalMechanism.handleChallenge(LongString challenge,
String username,
String password) |
LongString |
MethodArgumentReader.readLongstr()
Public API - reads a long string argument.
|
LongString |
ValueReader.readLongstr()
Public API - reads a long string.
|
LongString |
ContentHeaderPropertyReader.readLongstr()
Reads and returns an AMQP "long string" (binary) content header field.
|
Modifier and Type | Method and Description |
---|---|
LongString |
CRDemoMechanism.handleChallenge(LongString challenge,
String username,
String password) |
LongString |
PlainMechanism.handleChallenge(LongString challenge,
String username,
String password) |
LongString |
ExternalMechanism.handleChallenge(LongString challenge,
String username,
String password) |
void |
ValueWriter.writeLongstr(LongString str)
Public API - encodes a long string from a LongString.
|
void |
ContentHeaderPropertyWriter.writeLongstr(LongString str) |
void |
MethodArgumentWriter.writeLongstr(LongString str)
Public API - encodes a long string argument from a LongString.
|
Constructor and Description |
---|
OpenOk(LongString channelId) |
Secure(LongString challenge) |
SecureOk(LongString response) |
Start(int versionMajor,
int versionMinor,
Map<String,Object> serverProperties,
LongString mechanisms,
LongString locales) |
StartOk(Map<String,Object> clientProperties,
String mechanism,
LongString response,
String locale) |
UpdateSecret(LongString newSecret,
String reason) |
Copyright © 2022 VMware, Inc. or its affiliates.. All rights reserved.