mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-03-09 02:39:28 +00:00
Javadoc error fixes
This commit is contained in:
parent
d5242978d5
commit
4ef9c5e238
@ -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 {
|
||||
|
@ -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) {
|
||||
|
@ -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 {
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user