36 lines
717 B
Plaintext
Executable File
36 lines
717 B
Plaintext
Executable File
/*
|
|
*
|
|
*/
|
|
package com.fp.bpmlib.transaction.flow;
|
|
|
|
import com.fp.dto.save.SaveRequest;
|
|
|
|
// TODO: Auto-generated Javadoc
|
|
/**
|
|
* Class StartFlowMemoryNewOnly encargada de.
|
|
*
|
|
* @author gfiallos
|
|
*/
|
|
public class StartFlowMemoryNewOnly extends StartFlowMemory {
|
|
|
|
/** serialVersionUID. */
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* Normal process.
|
|
*
|
|
* @param pRequest the request
|
|
* @return save request
|
|
* @throws Exception la exception
|
|
*/
|
|
@Override
|
|
public SaveRequest normalProcess(SaveRequest pRequest) throws Exception {
|
|
|
|
if (!this.isNew(pRequest)) {
|
|
return pRequest;
|
|
}
|
|
return super.normalProcess(pRequest);
|
|
}
|
|
|
|
}
|