Class InsertFormElementRequest
- java.lang.Object
-
- de.xima.fc.gui.bean.designer.request.InsertFormElementRequest
-
- All Implemented Interfaces:
IDesignerConversationRequest<InsertFormElementResponse>
,ICrossViewScopeRequest<InsertFormElementResponse>
,Serializable
public final class InsertFormElementRequest extends Object
Requests a livecycle file to get loaded in the workflow designer.- Since:
- 7.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InsertFormElementRequest(EContentView contentView, InsertFormElementData data)
Creates a new POJO with the given data.InsertFormElementRequest(String sourceTabId, InsertFormElementData data)
Creates a new POJO with the given data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InsertFormElementData
getData()
Class<? extends InsertFormElementResponse>
getResponseType()
String
getSourceTabId()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.gui.bean.designer.request.IDesignerConversationRequest
getSourceTabView
-
-
-
-
Constructor Detail
-
InsertFormElementRequest
public InsertFormElementRequest(EContentView contentView, InsertFormElementData data)
Creates a new POJO with the given data.- Parameters:
contentView
- Content view of the source that initiated the request.data
- Data with the form element persist to insert.
-
InsertFormElementRequest
public InsertFormElementRequest(String sourceTabId, InsertFormElementData data)
Creates a new POJO with the given data.- Parameters:
sourceTabId
- Value returned byIDesignerConversationRequest.getSourceTabId()
.data
- Data with the form element persist to insert.
-
-
Method Detail
-
getData
public InsertFormElementData getData()
- Returns:
- JSON string with the form element persist to insert.
-
getResponseType
public Class<? extends InsertFormElementResponse> getResponseType()
- Returns:
- Type of the requested data.
-
getSourceTabId
public String getSourceTabId()
- Specified by:
getSourceTabId
in interfaceIDesignerConversationRequest<T extends Serializable>
- Returns:
- ID of the tab (see
TabModel.getId()
) that issued the event. Empty string if the event was issued by the designer parent frame.
-
-