Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ protected static String perform(
}
```

For more information about any method in the `ACTION_DEFINITION`, refer to the [action documentation](../component_specification/action.md).
For more information about any method in the `ACTION_DEFINITION`, refer to the [action documentation](/developer_guide/component_specification/action).
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ title: "Component"
The component definition is used to specify the properties of a component. Below is an explanation of each method that can be used in the component definition:

- `component(String name)` - Builds new `ModifiableComponentDefinition` with the specified name. The name defines the component key (backend ID).
- [`actions(A... actionDefinitions)`](./action) - Specifies the actions that the component can perform.
- [`actions(A... actionDefinitions)`](/developer_guide/component_specification/action) - Specifies the actions that the component can perform.
- `categories(ComponentCategory... category)` - Defines the category or categories that the component belongs to, used to group components together in the UI.
- [`connection(ModifiableConnectionDefinition connectionDefinition)`](./connection) - Sets the connection definition for the component.
- [`connection(ModifiableConnectionDefinition connectionDefinition)`](/developer_guide/component_specification/connection) - Sets the connection definition for the component.
- `connectionRequired(boolean connectionRequired)` - Indicates whether the component requires a connection to be configured before it can be used.
- `customAction(boolean customAction)` - Indicates if the component is REST-based.
- `description(String description)` - Provides a short description of the component.
Expand Down
Loading