Javadoc error fixes

This commit is contained in:
Ville Skyttä 2016-08-25 16:00:20 +03:00 committed by Clebert Suconic
parent d5242978d5
commit 4ef9c5e238
4 changed files with 5 additions and 6 deletions

View File

@ -27,7 +27,7 @@ import org.apache.activemq.artemis.core.persistence.impl.journal.AbstractJournal
import org.apache.activemq.artemis.core.protocol.core.impl.PacketImpl;
/**
* Message is used to sync {@link org.apache.activemq.artemis.core.journal.SequentialFile}s to a backup server. The {@link FileType} controls
* Message is used to sync {@link org.apache.activemq.artemis.core.io.SequentialFile}s to a backup server. The {@link FileType} controls
* which extra information is sent.
*/
public final class ReplicationSyncFileMessage extends PacketImpl {

View File

@ -95,7 +95,7 @@ public class AmqpSender extends AmqpAbstractResource<Sender> {
* Create a new sender instance using the given Target when creating the link.
*
* @param session The parent session that created the session.
* @param address The address that this sender produces to.
* @param target The target that this sender produces to.
* @param senderId The unique ID assigned to this sender.
*/
public AmqpSender(AmqpSession session, Target target, String senderId) {

View File

@ -47,7 +47,6 @@ public class AmqpTransactionContext {
/**
* Begins a new transaction scoped to the target session.
*
* @param txId The transaction Id to use for this new transaction.
* @throws Exception if an error occurs while starting the transaction.
*/
public void begin() throws Exception {

View File

@ -78,7 +78,7 @@ public interface Mechanism extends Comparable<Mechanism> {
*
* @param username The user name given.
*/
void setUsername(String value);
void setUsername(String username);
/**
* Returns the configured user name value for this Mechanism.
@ -91,9 +91,9 @@ public interface Mechanism extends Comparable<Mechanism> {
* Sets the password value for this Mechanism. The Mechanism can ignore this
* value if it does not utilize a password in it's authentication processing.
*
* @param username The user name given.
* @param password The password given.
*/
void setPassword(String value);
void setPassword(String password);
/**
* Returns the configured password value for this Mechanism.