if ( Integer.parseInt( seconds ) > TimeUtil.MAX_SECOND_BY_MILLISEC ) {
isValid = false;
}
break;
case MINUTES:
MinutelyRecurrenceEditor mEd = recurrenceEditor.getMinutelyEditor();
String minutes = mEd.getValue();
if ( !StringUtils.isPositiveInteger( minutes ) || ( Integer.parseInt( minutes ) <= 0 ) ) {
isValid = false;
}
if ( Integer.parseInt( minutes ) > TimeUtil.MAX_MINUTE_BY_MILLISEC ) {
isValid = false;