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

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

/**
 * Hold the reserved keywords.
 * 
 * @author SERPRO
 *
 */
public enum ReservedKeyWords {
    
    // Pagination
    DEFAULT_RANGE_KEY("range"),
    
    // Sort
    DEFAULT_SORT_DESC_KEY("desc"),
    DEFAULT_SORT_KEY("sort"),
    
    // Fields
    DEFAULT_FIELD_KEY("fields");
    
    private final String key;

    ReservedKeyWords(String key){
        this.key = key;
    }
    
    public String getKey(){
        return this.key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy