Package fr.gouv.vitam.common.model
Class ProcessPause
- java.lang.Object
-
- fr.gouv.vitam.common.model.ProcessPause
-
public class ProcessPause extends java.lang.Object
Model to pause processes.
-
-
Constructor Summary
Constructors Constructor Description ProcessPause()
Constructor without fields use for jacksonProcessPause(java.lang.String type, int tenant, java.lang.Boolean pauseAll)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Boolean
getPauseAll()
Gets the pauseAll paramjava.lang.Integer
getTenant()
Gets the tenantjava.lang.String
getType()
Gets the typevoid
setPauseAll(java.lang.Boolean pauseAll)
Sets the pauseAllvoid
setTenant(java.lang.Integer tenant)
Sets the tenantvoid
setType(java.lang.String type)
Sets the type
-
-
-
Method Detail
-
getType
public java.lang.String getType()
Gets the type- Returns:
- the type
-
setType
public void setType(java.lang.String type)
Sets the type- Parameters:
type
- the type to set
-
getTenant
public java.lang.Integer getTenant()
Gets the tenant- Returns:
- the tenant
-
setTenant
public void setTenant(java.lang.Integer tenant)
Sets the tenant- Parameters:
tenant
- the tenant to set
-
getPauseAll
public java.lang.Boolean getPauseAll()
Gets the pauseAll param- Returns:
- the pauseAll
-
setPauseAll
public void setPauseAll(java.lang.Boolean pauseAll)
Sets the pauseAll- Parameters:
pauseAll
- the pauseAll to set
-
-