Skip to content

Commit

Permalink
Fix broken Javadoc links (apache#12244)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljmarshall authored Oct 4, 2021
1 parent 6826434 commit f15f8d2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public enum ConsumerCryptoFailureAction {
* <p>If message is also compressed, decompression will fail. If message contain batch messages, client will not be
* able to retrieve individual messages in the batch.
*
* <p>Delivered encrypted message contains {@link EncryptionContext} which contains encryption and compression
* information in it using which application can decrypt consumed message payload.
* <p>Delivered encrypted message contains {@link org.apache.pulsar.common.api.EncryptionContext} which contains
* encryption and compression information in it using which application can decrypt consumed message payload.
*/
CONSUME;
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static ClientBuilder builder() {

/**
* Create a producer builder that can be used to configure
* and construct a producer with default {@link Schema.BYTES}.
* and construct a producer with default {@link Schema#BYTES}.
*
* <p>Example:
*
Expand Down Expand Up @@ -97,7 +97,7 @@ static ClientBuilder builder() {
<T> ProducerBuilder<T> newProducer(Schema<T> schema);

/**
* Create a consumer builder with no schema ({@link Schema.BYTES}) for subscribing to
* Create a consumer builder with no schema ({@link Schema#BYTES}) for subscribing to
* one or more topics.
*
* <pre>{@code
Expand Down Expand Up @@ -147,7 +147,7 @@ static ClientBuilder builder() {
<T> ConsumerBuilder<T> newConsumer(Schema<T> schema);

/**
* Create a topic reader builder with no schema ({@link Schema.BYTES}) to read from the specified topic.
* Create a topic reader builder with no schema ({@link Schema#BYTES}) to read from the specified topic.
*
* <p>The Reader provides a low-level abstraction that allows for manual positioning in the topic, without using a
* subscription. A reader needs to be specified a {@link ReaderBuilder#startMessageId(MessageId)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* An up-to-date list of suffixes can be obtained from
* <a href="http://publicsuffix.org/">publicsuffix.org</a>
*
* @see org.apache.pulsar.client.impl.tls.PublicSuffixList
* @see org.apache.pulsar.common.tls.PublicSuffixList
*
* @since 4.4
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public void run() {
*
* @param addr
* Socket Address
* @param latch
* @param l
* Latch to wait on
* @throws InterruptedException
* @throws IOException
Expand Down

0 comments on commit f15f8d2

Please sign in to comment.