
ch.ralscha.extdirectspring.bean.SortInfo Maven / Gradle / Ivy
/**
* Copyright 2010-2014 Ralph Schaer
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.ralscha.extdirectspring.bean;
import java.util.Map;
/**
* Class contains information about the property/field on which to sort and if sort is
* ascending or descending. Ext JS can send more than one sort info in one request.
*/
public class SortInfo {
private final String property;
private final SortDirection direction;
public SortInfo(String property, SortDirection direction) {
this.property = property;
this.direction = direction;
}
/**
* @return the property/field on which to sort
*/
public String getProperty() {
return property;
}
public SortDirection getDirection() {
return direction;
}
public static SortInfo create(Map jsonData) {
String property = (String) jsonData.get("property");
String direction = (String) jsonData.get("direction");
return new SortInfo(property, SortDirection.fromString(direction));
}
@Override
public String toString() {
return "SortInfo [property=" + property + ", direction=" + direction + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy