com.wesleyhome.dao.processor.method.LessThanQueryMethodGenerator Maven / Gradle / Ivy
/*
* @(#)BeforeQueryMethodGenerator.java
*
* (C) Copyright 2014 by Travelers
* All Rights Reserved.
*
* This software is the confidential and proprietary information
* of the Travelers Corporation. ("Confidential Information").
* Redistribution of the source code or binary form is not permitted
* without prior authorization from Travelers.
*/
package com.wesleyhome.dao.processor.method;
/**
* The BeforeQueryMethodGenerator
class is a
*
* @author
* @since
*/
public class LessThanQueryMethodGenerator extends BaseQueryParameterMethodGenerator {
/* (non-Javadoc)
* @see com.travelers.smart.dao.generator.processor.method.BaseQueryMethodGenerator#getQueryTypeName()
*/
@Override
protected String getQueryTypeName() {
return "IsLessThan";
}
/* (non-Javadoc)
* @see com.travelers.smart.dao.generator.processor.method.BaseQueryMethodGenerator#getPredicateMethodName()
*/
@Override
protected String getPredicateMethodName() {
return "isLessThan";
}
}