![JAR search and dependency download from the Maven repository](/logo.png)
io.committed.invest.graphql.ui.data.UiActionDefinition 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.data;
import lombok.Data;
import io.committed.invest.extensions.actions.ActionDefinition;
/** DTO for Ui actions */
@Data
public class UiActionDefinition {
private String action;
private String title;
private String description;
public UiActionDefinition(final ActionDefinition defn) {
this.action = defn.getAction();
this.description = defn.getDescription();
this.title = defn.getTitle();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy