AMashenkov commented on code in PR #6225:
URL: https://github.com/apache/ignite-3/pull/6225#discussion_r2207256828
##########
modules/runner/src/test/java/org/apache/ignite/internal/configuration/compatibility/framework/ConfigurationTreeScanner.java:
##########
@@ -51,27 +61,20 @@
support named lists. See {@link
org.apache.ignite.configuration.annotation.NamedConfigValue} annotation.
TODO: https://issues.apache.org/jira/browse/IGNITE-25572
support polymorphic nodes. See {@link
org.apache.ignite.configuration.annotation.PolymorphicConfig} annotation.
- TODO https://issues.apache.org/jira/browse/IGNITE-25747
- support {@link org.apache.ignite.configuration.validation.Range} annotation.
- support {@link org.apache.ignite.configuration.validation.Endpoint}
annotation.
- support {@link org.apache.ignite.configuration.validation.PowerOfTwo}
annotation.
- support {@link org.apache.ignite.configuration.validation.OneOf} annotation.
- support {@link org.apache.ignite.configuration.validation.NotBlank}
annotation.
- support {@link org.apache.ignite.configuration.validation.Immutable}
annotation. ???
- support {@link org.apache.ignite.configuration.validation.ExceptKeys}
annotation.
- support {@link org.apache.ignite.configuration.validation.CamelCaseKeys}
annotation.
- support {@link
org.apache.ignite.internal.network.configuration.MulticastAddress} annotation.
???
- support {@link
org.apache.ignite.internal.network.configuration.SslConfigurationValidator}
annotation. ???
*/
/**
* Provides method to extract metadata from project configuration classes.
*/
public class ConfigurationTreeScanner {
- private static final Set<Class<?>> SUPPORTED_FIELD_ANNOTATIONS = Set.of(
+ private static final Set<Class<?>> FLAG_ANNOTATIONS = Set.of(
Review Comment:
```suggestion
private static final Set<Class<?>> SUPPORTED_ANNOTATIONS = Set.of(
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]