*/
public void doTag(XMLOutput output) throws Exception
{
if ( getSpec() == null )
{
throw new MissingAttributeException( "spec" );
}
if ( getName() == null )
{
throw new MissingAttributeException( "name" );
}
if ( getGroup() == null )
{
throw new MissingAttributeException( "group" );
}
if ( getJobName() == null )
{
throw new MissingAttributeException( "jobName" );
}
if ( getJobGroup() == null )
{
throw new MissingAttributeException( "jobGroup" );
}
CronTrigger trigger = new CronTrigger( getName(),
getGroup() );