Package name.pehl.karaka.server.paging.entity

Examples of name.pehl.karaka.server.paging.entity.PageInfo


    public static final String PAGE_SIZE = "pageSize";


    protected PageInfo getPageInfo(MultivaluedMap<String, String> input) throws PageInfoParseException
    {
        PageInfo result = null;
        if (input != null)
        {
            String offset = input.getFirst(OFFSET);
            String pageSize = input.getFirst(PAGE_SIZE);
            int offsetValue = convertInt(offset, "Paging info contains the invalid offset: \"%s\"", offset);
            int pageSizeValue = convertInt(pageSize, "Paging info contains the invalid page size: \"%s\"", pageSize);
            result = new PageInfo(offsetValue, pageSizeValue);
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of name.pehl.karaka.server.paging.entity.PageInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.