Class MigrationReinvokeRequest
- java.lang.Object
-
- com.gentics.contentnode.rest.model.request.migration.MigrationReinvokeRequest
-
- All Implemented Interfaces:
Serializable
public class MigrationReinvokeRequest extends Object implements Serializable
Tag Type Migration Reinvoke Request. This request can be used to reinvoke a migration job.- Author:
- johannes2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MigrationReinvokeRequest()
Default Constructor needed for jaxb
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getJobId()
Returns the job id for this requestInteger
getObjectId()
Returns the id of the object that should be re-invoked.String
getType()
Return the type of this migration requestvoid
setJobId(Integer jobId)
Set the job id that should be used for reinvocationvoid
setObjectId(Integer objectId)
Set the object id for the requestvoid
setType(String type)
Set the migration job type for this request
-
-
-
Method Detail
-
getType
public String getType()
Return the type of this migration request- Returns:
-
setType
public void setType(String type)
Set the migration job type for this request- Parameters:
type
-
-
getObjectId
public Integer getObjectId()
Returns the id of the object that should be re-invoked.- Returns:
-
setObjectId
public void setObjectId(Integer objectId)
Set the object id for the request- Parameters:
objectId
-
-
getJobId
public Integer getJobId()
Returns the job id for this request- Returns:
-
setJobId
public void setJobId(Integer jobId)
Set the job id that should be used for reinvocation- Parameters:
jobId
-
-
-