Rückgabe eines Wertes aus einer Aktion
- Zuletzt aktualisiert2022/05/19
Rückgabe eines Wertes aus einer Aktion
Legen Sie die folgenden Eigenschaften für CommandPkg fest, um die Aktionsausgabe als Variable zu speichern.
Rückgabewerte von Aktionen
- return_type
Legt den Rückgabetyp der Aktion fest. Er entspricht normalerweise dem Rückgabetyp der Eingabemethode.
- return_required
Wenn der Wert auf true festgelegt ist, wird der Rückgabewert benötigt.
- return_label
Eine Beschreibung der Bezeichnung für den Variablenwert in der Nutzeroberfläche.
Beispiel: Konvertieren einer Quellzeichenfolge in Großbuchstaben und Zuweisen des Ergebnisses zu „returnTo“
//BotCommand makes a class eligible for being considered as an action.
@BotCommand
//CommandPks adds required information to be displayable on the UI.
@CommandPkg(
//Unique name inside a package and label to display.
name = "uppercase", label = "[[Uppercase.label]]",
node_label = "[[Uppercase.node_label]]", description = "[[Uppercase.description]]", icon = "pkg.svg",
//Return type information. return_type ensures only the right kind of variable is provided on the UI.
return_label = "[[Uppercase.return_label]]", return_type = STRING, return_required = true)
public class Uppercase {
//Messages read from a fully qualified property file name and provides i18n capability.
private static final Messages MESSAGES = MessagesFactory
.getMessages("com.automationanywhere.botcommand.samples.messages");
//Identify the entry point for the action. Returns a Value <String> because the return type is String.
@Execute
public Value<String> action(
//Idx 1 would be displayed first, with a text box for entering the value.
@Idx(index = "1", type = TEXT)
//UI labels.
@Pkg(label = "[[Uppercase.sourceString.label]]")
//Ensure that a validation error is thrown when the value is null.
@NotEmpty
String sourceString,