Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.7.x] RHPAM-1104: Stunner - 'Task name' is for internal use and mustn't be editable for ServiceTasks #1833

Merged
merged 1 commit into from
Jun 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import org.kie.workbench.common.forms.adf.definitions.annotations.FieldParam;
import org.kie.workbench.common.forms.adf.definitions.annotations.FormDefinition;
import org.kie.workbench.common.forms.adf.definitions.annotations.FormField;
import org.kie.workbench.common.forms.adf.definitions.annotations.SkipFormField;
import org.kie.workbench.common.stunner.bpmn.definition.BPMNPropertySet;
import org.kie.workbench.common.stunner.bpmn.definition.property.task.AdHocAutostart;
import org.kie.workbench.common.stunner.bpmn.definition.property.task.IsAsync;
Expand All @@ -40,16 +41,16 @@
@Portable
@Bindable
@PropertySet
@FormDefinition(startElement = "taskName")
@FormDefinition(startElement = "isAsync")
public class ServiceTaskExecutionSet implements BPMNPropertySet {

@Property
@FormField
@SkipFormField
@Valid
protected TaskName taskName;

@Property
@FormField(afterElement = "taskName")
@FormField
@Valid
private IsAsync isAsync;

Expand Down