Skip to content

Commit 1704bc4

Browse files
author
Simon MacMullen
committed
Bit more javadoc.
1 parent 8cbf71b commit 1704bc4

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/com/rabbitmq/client/ConnectionFactory.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ public void setClientProperties(Map<String, Object> clientProperties) {
264264
/**
265265
* Gets the sasl config to use when authenticating
266266
* @return
267+
* @see com.rabbitmq.client.SaslConfig
267268
*/
268269
public SaslConfig getSaslConfig() {
269270
return saslConfig;
@@ -272,6 +273,7 @@ public SaslConfig getSaslConfig() {
272273
/**
273274
* Sets the sasl config to use when authenticating
274275
* @param saslConfig
276+
* @see com.rabbitmq.client.SaslConfig
275277
*/
276278
public void setSaslConfig(SaslConfig saslConfig) {
277279
this.saslConfig = saslConfig;

src/com/rabbitmq/client/DefaultSaslConfig.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
import java.util.Map;
88

99
/**
10-
*
10+
* Default implementation of SaslConfig that uses the standard Java
11+
* algorithm for selecting a sasl client.
12+
* @see com.rabbitmq.client.ConnectionFactory
1113
*/
1214
public class DefaultSaslConfig implements SaslConfig {
1315
private ConnectionFactory factory;

src/com/rabbitmq/client/SaslConfig.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
import javax.security.sasl.SaslException;
55

66
/**
7-
*
7+
* This interface represents a hook to allow you to control how exactly
8+
* a sasl client is selected during authentication.
9+
* @see com.rabbitmq.client.ConnectionFactory
810
*/
911
public interface SaslConfig {
1012
SaslClient getSaslClient(String[] mechanisms) throws SaslException;

0 commit comments

Comments
 (0)