mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUACAMOLE-197: Add JavaDoc comments for the response field class; remove some debug code.
This commit is contained in:
committed by
Nick Couchman
parent
0d505bdcf7
commit
59e8b8a667
@@ -24,12 +24,12 @@ import org.codehaus.jackson.annotate.JsonProperty;
|
|||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public class RadiusChallengeResponseField extends Field {
|
/**
|
||||||
|
* A form used to prompt the user for additional information when
|
||||||
/**
|
* the RADIUS server sends a challenge back to the user with a reply
|
||||||
* Logger for this class.
|
* message.
|
||||||
*/
|
*/
|
||||||
private final Logger logger = LoggerFactory.getLogger(RadiusChallengeResponseField.class);
|
public class RadiusChallengeResponseField extends Field {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The field returned by the RADIUS challenge/response.
|
* The field returned by the RADIUS challenge/response.
|
||||||
@@ -51,12 +51,13 @@ public class RadiusChallengeResponseField extends Field {
|
|||||||
*/
|
*/
|
||||||
public RadiusChallengeResponseField(String replyMsg) {
|
public RadiusChallengeResponseField(String replyMsg) {
|
||||||
super(PARAMETER_NAME, RADIUS_FIELD_TYPE);
|
super(PARAMETER_NAME, RADIUS_FIELD_TYPE);
|
||||||
logger.debug("Initializing the RADIUS challenge/response field: {}", replyMsg);
|
|
||||||
|
|
||||||
this.replyMsg = replyMsg;
|
this.replyMsg = replyMsg;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the value of the replyMsg field.
|
||||||
|
*/
|
||||||
public String getReplyMsg() {
|
public String getReplyMsg() {
|
||||||
return replyMsg;
|
return replyMsg;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user