All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wesleyhome.dao.processor.method.GreaterThanQueryMethodGenerator 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 GreaterThanQueryMethodGenerator extends BaseQueryParameterMethodGenerator {

	/* (non-Javadoc)
	 * @see com.travelers.smart.dao.generator.processor.method.BaseQueryMethodGenerator#getQueryTypeName()
	 */
	@Override
	protected String getQueryTypeName() {
		return "IsGreaterThan";
	}

	/* (non-Javadoc)
	 * @see com.travelers.smart.dao.generator.processor.method.BaseQueryMethodGenerator#getPredicateMethodName()
	 */
	@Override
	protected String getPredicateMethodName() {
		return "isGreaterThan";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy