io.committed.invest.graphql.ui.UiPluginsSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of invest-plugin-graphql-ui Show documentation
Show all versions of invest-plugin-graphql-ui Show documentation
GraphQL endpoints to support the invest UI
package io.committed.invest.graphql.ui;
import java.util.List;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/** Settings for the UI plugins */
@Data
@ConfigurationProperties("invest.ui")
public class UiPluginsSettings {
/**
* Specify the plugins order of plugins in the UI.
*
* Any available plugins not on this list will be placed at the end (and unordered relative to
* one another).
*/
private List plugins = null;
}