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

org.demoiselle.jee.crud.CrudMessage 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;

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

/**
 * 
 * Messages used to inform user about CRUD feature
 * 
 * @author SERPRO 
 */
@MessageBundle
public interface CrudMessage {
    
    @MessageTemplate("{method-find-not-implemented}")
    String methodFindNotImplemented();
    
    @MessageTemplate("{field-request-does-not-exists-on-search-field}")
    String fieldRequestDoesNotExistsOnSearchField(String field);
    
    @MessageTemplate("{field-request-does-not-exists-on-object}")
    String fieldRequestDoesNotExistsOnObject(String field, String className);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy