private synchronized void checkPipelineId(String id) throws DynamicPipelineException
{
if (!StringUtils.equals(pipelineId, id))
{
throw new DynamicPipelineException(CoreMessages.createStaticMessage("Invalid Dynamic Pipeline ID"));
}
if (pipelineId == null && id == null)
{
pipelineId = UUID.getUUID();
}