com.lifeonwalden.springscheduling.cronBuilder.model.All Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-scheduler Show documentation
Show all versions of spring-scheduler Show documentation
A persistence scheduler system based on Spring framework
package com.lifeonwalden.springscheduling.cronBuilder.model;
/**
* 所有
*
* @author luhong
*
*/
public class All implements FieldDefinition {
@Override
public String toExpression() {
return "*";
}
@Override
public boolean isValid(Class> clazz) {
return true;
}
}