Skip to content

Commit 5c2a63a

Browse files
Mart-Bogdanlittleaj
authored andcommitted
Fixed javadocs tags, that caused build errors while executing javadoc gradle task (#578)
1 parent 18b6fe2 commit 5c2a63a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

core/src/main/java/com/microsoft/applicationinsights/internal/channel/TransmissionHandler.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
/**
44
* An interface that is used to create a concrete class that is called by the the {@link TransmissionHandlerObserver}
55
* <p>
6-
* This is used to implement classes like {@link ErrorHandler} and {@link PartialSuccessHandler}.
6+
* This is used to implement classes like {@link com.microsoft.applicationinsights.internal.channel.common.ErrorHandler}
7+
* and {@link com.microsoft.applicationinsights.internal.channel.common.PartialSuccessHandler}.
78
* @author jamdavi
8-
*
9-
*
109
*/
1110
public interface TransmissionHandler {
1211
/**

core/src/main/java/com/microsoft/applicationinsights/internal/channel/TransmissionHandlerArgs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* This class is used to store information between the transmission sender and the transmission handlers
99
* <p>
10-
* An example class that uses this are {@link ErrorHandler}
10+
* An example class that uses this are {@link com.microsoft.applicationinsights.internal.channel.common.ErrorHandler}
1111
* @author jamdavi
1212
*
1313
*/

core/src/main/java/com/microsoft/applicationinsights/internal/channel/TransmissionHandlerObserver.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22

33

44
/**
5-
* Enables the {@link TransmissionPolicyManager} to handle transmission states.
5+
* Enables the {@link com.microsoft.applicationinsights.internal.channel.common.TransmissionPolicyManager} to handle transmission states.
66
* <p>
7-
* This interface extends {@TransmissionHandler} to add the ability to observe when the transmission is completed.
7+
* This interface extends {@link TransmissionHandler} to add the ability to observe when the transmission is completed.
88
* @author jamdavi
99
*
1010
*/
1111
public interface TransmissionHandlerObserver extends TransmissionHandler {
1212

1313
/**
14-
* Used to add a {@link TransmissionHandler} to the collection stored by the {@link TransmissionPolicyManager}
14+
* Used to add a {@link TransmissionHandler} to the collection stored by the
15+
* {@link com.microsoft.applicationinsights.internal.channel.common.TransmissionPolicyManager}.
1516
* @param handler The handler to add to the collection.
1617
*/
1718
void addTransmissionHandler(TransmissionHandler handler);

core/src/main/java/com/microsoft/applicationinsights/internal/channel/TransmitterFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
*/
2727
public interface TransmitterFactory {
2828
/**
29-
* Creates the {@link TelemetriesTransmitter} for use by the {@link TelemetryChannel}
29+
* Creates the {@link TelemetriesTransmitter} for use by the {@link com.microsoft.applicationinsights.channel.TelemetryChannel}
3030
* @param endpoint HTTP Endpoint to send telemetry to
3131
* @param maxTransmissionStorageCapacity Max amount of disk space in KB for persistent storage to use
3232
* @param throttlingIsEnabled Allow the network telemetry sender to be throttled
3333
* @return The {@link TelemetriesTransmitter} object
3434
*/
3535
TelemetriesTransmitter create(String endpoint, String maxTransmissionStorageCapacity, boolean throttlingIsEnabled);
3636
/**
37-
* Creates the {@link TelemetriesTransmitter} for use by the {@link TelemetryChannel}
37+
* Creates the {@link TelemetriesTransmitter} for use by the {@link com.microsoft.applicationinsights.channel.TelemetryChannel}
3838
* @param endpoint HTTP Endpoint to send telemetry to
3939
* @param maxTransmissionStorageCapacity Max amount of disk space in KB for persistent storage to use
4040
* @param throttlingIsEnabled Allow the network telemetry sender to be throttled

0 commit comments

Comments
 (0)