Annotation Type ExtensionConfiguration


  • @Beta
    @Retention(RUNTIME)
    @Target(TYPE)
    @Documented
    @Deprecated
    public @interface ExtensionConfiguration
    Deprecated.
    Denotes that a class provides extension configuration. For example:
    
     @ExtensionConfiguration("my-extension")
     public class MyExtensionConfiguration {
       private String someProperty;
     }
     
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String value
      Deprecated.
      The property value of the extension configuration.
    • Element Detail

      • value

        @Nonnull
        java.lang.String value
        Deprecated.
        The property value of the extension configuration. For example, if set to `netflix.orca-stage` the corresponding config coordinates would be:

        `spinnaker.extensibility.plugins.pluginId.extensions.netflix.orca-stage.config`

        Returns: