Skip to content

Commit ac16d53

Browse files
mazas-googlecopybara-github
authored andcommitted
fix: Replace @APinote with <p> in Javadoc comments.
@APinote is an unregistered custom tag, breaking Javadoc generation PiperOrigin-RevId: 846132645
1 parent 4948bfc commit ac16d53

12 files changed

Lines changed: 24 additions & 24 deletions

a2a/src/main/java/com/google/adk/a2a/A2AClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
/**
2626
* A thin HTTP client for interacting with an A2A-compliant agent endpoint.
2727
*
28-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
29-
* not use in production code.
28+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
29+
* use in production code.
3030
*/
3131
public final class A2AClient {
3232

a2a/src/main/java/com/google/adk/a2a/A2ASendMessageExecutor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
/**
3333
* Shared SendMessage execution between HTTP service and other integrations.
3434
*
35-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
36-
* not use in production code.
35+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
36+
* use in production code.
3737
*/
3838
public final class A2ASendMessageExecutor {
3939
private static final Logger logger = LoggerFactory.getLogger(A2ASendMessageExecutor.class);

a2a/src/main/java/com/google/adk/a2a/RemoteA2AAgent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
* <li>Session state management across requests
4848
* </ul>
4949
*
50-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
51-
* not use in production code.
50+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
51+
* use in production code.
5252
*/
5353
public class RemoteA2AAgent extends BaseAgent {
5454

a2a/src/main/java/com/google/adk/a2a/converters/ConversationPreprocessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
* <p>This mirrors the Python A2A implementation where the in-flight user message is maintained
2222
* separately from the persisted transcript.
2323
*
24-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
25-
* not use in production code.
24+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
25+
* use in production code.
2626
*/
2727
public final class ConversationPreprocessor {
2828

a2a/src/main/java/com/google/adk/a2a/converters/EventConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
/**
1717
* Converter for ADK Events to A2A Messages.
1818
*
19-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
20-
* not use in production code.
19+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
20+
* use in production code.
2121
*/
2222
public final class EventConverter {
2323
private static final Logger logger = LoggerFactory.getLogger(EventConverter.class);

a2a/src/main/java/com/google/adk/a2a/converters/PartConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
/**
2424
* Utility class for converting between Google GenAI Parts and A2A DataParts.
2525
*
26-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
27-
* not use in production code.
26+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
27+
* use in production code.
2828
*/
2929
public final class PartConverter {
3030
private static final Logger logger = LoggerFactory.getLogger(PartConverter.class);

a2a/src/main/java/com/google/adk/a2a/converters/RequestConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
* rfe Converter for A2A Messages to ADK Events. This is used on the A2A service side to convert
2020
* incoming A2A requests to ADK Events.
2121
*
22-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
23-
* not use in production code.
22+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
23+
* use in production code.
2424
*/
2525
public final class RequestConverter {
2626
private static final Logger logger = LoggerFactory.getLogger(RequestConverter.class);

a2a/src/main/java/com/google/adk/a2a/converters/ResponseConverter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Utility for converting ADK events to A2A spec messages (and back).
2121
*
22-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
23-
* not use in production code.
22+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
23+
* use in production code.
2424
*/
2525
public final class ResponseConverter {
2626
private static final Logger logger = LoggerFactory.getLogger(ResponseConverter.class);

a2a/webservice/src/main/java/com/google/adk/webservice/A2ARemoteApplication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
/**
88
* Entry point for the standalone Spring Boot A2A service.
99
*
10-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
11-
* not use in production code.
10+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
11+
* use in production code.
1212
*/
1313
@SpringBootApplication
1414
@Import(A2ARemoteConfiguration.class)

a2a/webservice/src/main/java/com/google/adk/webservice/A2ARemoteConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
* <li>Add optional remote-proxy wiring for cases where no local agent bean is available.
2525
* </ul>
2626
*
27-
* @apiNote **EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do
28-
* not use in production code.
27+
* <p>**EXPERIMENTAL:** Subject to change, rename, or removal in any future patch release. Do not
28+
* use in production code.
2929
*/
3030
@Configuration
3131
@ComponentScan(basePackages = "com.google.adk.webservice")

0 commit comments

Comments
 (0)