Package com.hybris.cockpitng.actions
Class BackgroundOperationDefinition
- java.lang.Object
-
- com.hybris.cockpitng.actions.BackgroundOperationDefinition
-
public class BackgroundOperationDefinition extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description BackgroundOperationDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBusyMessage()org.zkoss.zk.ui.event.EventListener<org.zkoss.zk.ui.event.Event>getCallbackEvent()java.lang.StringgetId()OperationgetOperation()voidsetBusyMessage(java.lang.String busyMessage)voidsetCallbackEvent(org.zkoss.zk.ui.event.EventListener<org.zkoss.zk.ui.event.Event> callbackEvent)voidsetId(java.lang.String id)voidsetOperation(Operation operation)
-
-
-
Method Detail
-
getId
public java.lang.String getId()
-
setId
public void setId(java.lang.String id)
- Parameters:
id- the id to set
-
getOperation
public Operation getOperation()
- Returns:
- the operation
-
setOperation
public void setOperation(Operation operation)
- Parameters:
operation- the operation to set
-
getCallbackEvent
public org.zkoss.zk.ui.event.EventListener<org.zkoss.zk.ui.event.Event> getCallbackEvent()
- Returns:
- the callbackEvent
-
setCallbackEvent
public void setCallbackEvent(org.zkoss.zk.ui.event.EventListener<org.zkoss.zk.ui.event.Event> callbackEvent)
- Parameters:
callbackEvent- the callbackEvent to set
-
getBusyMessage
public java.lang.String getBusyMessage()
- Returns:
- the busyMessage
-
setBusyMessage
public void setBusyMessage(java.lang.String busyMessage)
- Parameters:
busyMessage- the busyMessage to set
-
-