Package gov.nysenate.openleg.api

Examples of gov.nysenate.openleg.api.MultiViewRequest


         *  /legislation/(api/(1.0/)?)?[type](/[page number](/[page size]))?
         *
         *    ex.  legislation/bills/1/20 (first page, 20 bills a page)
         */
        if(apiRequest == null && (m = MULTI_PATTERN.matcher(uri)) != null && m.find()) {
            apiRequest = new MultiViewRequestrequest,
                    response,
                    m.group(MULTI_FORMAT),
                    m.group(MULTI_TYPE),
                    m.group(MULTI_PAGE_NUMBER),
                    m.group(MULTI_PAGE_SIZE));
View Full Code Here

TOP

Related Classes of gov.nysenate.openleg.api.MultiViewRequest

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.