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

org.demoiselle.jee.crud.pagination.PaginationHelperMessage Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
/*
 * Demoiselle Framework
 *
 * License: GNU Lesser General Public License (LGPL), version 3 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.demoiselle.jee.crud.pagination;

import org.apache.deltaspike.core.api.message.MessageBundle;
import org.apache.deltaspike.core.api.message.MessageTemplate;

/**
 * 
 * Messages used to inform user about Pagination feature
 * 
 * @author SERPRO
 */
@MessageBundle
public interface PaginationHelperMessage {
	
	@MessageTemplate("{invalid-range-parameters}")
	String invalidRangeParameters();

	@MessageTemplate("{default-pagination-number-exceed}")
	String defaultPaginationNumberExceed(Integer defaultPaginationNumber);

	@MessageTemplate("{pagination-is-not-enabled}")
    String paginationIsNotEnabled();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy