Skip to content

Commit bffb234

Browse files
authored
Fix javadoc warnings (#184)
Signed-off-by: see-quick <[email protected]>
1 parent 4c0acad commit bffb234

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

src/main/java/io/strimzi/test/container/StrimziConnectCluster.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ public class StrimziConnectCluster {
3131
private final String groupId;
3232
private final List<StrimziConnectContainer> workers;
3333

34+
/**
35+
* Creates a new StrimziConnectCluster using the provided builder.
36+
*
37+
* @param builder the builder containing the configuration for this cluster
38+
*/
3439
public StrimziConnectCluster(StrimziConnectClusterBuilder builder) {
3540
this.kafkaCluster = builder.kafkaCluster;
3641
this.additionalConnectConfiguration = builder.additionalConnectConfiguration;

src/main/java/io/strimzi/test/container/StrimziKafkaContainer.java

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,11 @@ public Proxy getProxy() {
10881088
return this.kafkaVersion;
10891089
}
10901090

1091+
/**
1092+
* Gets the node ID for this Kafka container.
1093+
*
1094+
* @return the node ID
1095+
*/
10911096
public int getNodeId() {
10921097
return nodeId;
10931098
}
@@ -1105,34 +1110,74 @@ public boolean isOAuthEnabled() {
11051110
return this.oauthEnabled;
11061111
}
11071112

1113+
/**
1114+
* Gets the SASL username for authentication.
1115+
*
1116+
* @return the SASL username
1117+
*/
11081118
public String getSaslUsername() {
11091119
return saslUsername;
11101120
}
11111121

1122+
/**
1123+
* Gets the SASL password for authentication.
1124+
*
1125+
* @return the SASL password
1126+
*/
11121127
public String getSaslPassword() {
11131128
return saslPassword;
11141129
}
11151130

1131+
/**
1132+
* Gets the OAuth realm.
1133+
*
1134+
* @return the OAuth realm
1135+
*/
11161136
public String getRealm() {
11171137
return realm;
11181138
}
11191139

1140+
/**
1141+
* Gets the OAuth client ID.
1142+
*
1143+
* @return the OAuth client ID
1144+
*/
11201145
public String getClientId() {
11211146
return clientId;
11221147
}
11231148

1149+
/**
1150+
* Gets the OAuth client secret.
1151+
*
1152+
* @return the OAuth client secret
1153+
*/
11241154
public String getClientSecret() {
11251155
return clientSecret;
11261156
}
11271157

1158+
/**
1159+
* Gets the OAuth URI.
1160+
*
1161+
* @return the OAuth URI
1162+
*/
11281163
public String getOauthUri() {
11291164
return oauthUri;
11301165
}
11311166

1167+
/**
1168+
* Gets the OAuth username claim.
1169+
*
1170+
* @return the OAuth username claim
1171+
*/
11321172
public String getUsernameClaim() {
11331173
return usernameClaim;
11341174
}
11351175

1176+
/**
1177+
* Gets the authentication type configured for this container.
1178+
*
1179+
* @return the authentication type
1180+
*/
11361181
public AuthenticationType getAuthenticationType() {
11371182
return authenticationType;
11381183
}

0 commit comments

Comments
 (0)