Package org.eclipse.persistence.jpa.rs.features

Source Code of org.eclipse.persistence.jpa.rs.features.FeatureSetV2

/*******************************************************************************
* Copyright (c) 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
*      gonural - initial implementation
******************************************************************************/
package org.eclipse.persistence.jpa.rs.features;

import org.eclipse.persistence.jpa.rs.features.clientinitiated.paging.PagingRequestValidator;
import org.eclipse.persistence.jpa.rs.features.clientinitiated.paging.PagingResponseBuilder;
import org.eclipse.persistence.jpa.rs.features.core.selflinks.SelfLinksResponseBuilder;

public class FeatureSetV2 implements FeatureSet {

    /* (non-Javadoc)
     * @see org.eclipse.persistence.jpa.rs.features.FeatureSet#isSupported(org.eclipse.persistence.jpa.rs.features.FeatureSet.Feature)
     */
    @Override
    public boolean isSupported(Feature feature) {
        switch (feature) {
            case NO_PAGING:
            case PAGING:
                return true;
            default:
                return false;
        }
    }

    /* (non-Javadoc)
     * @see org.eclipse.persistence.jpa.rs.features.FeatureSet#getRequestValidator(org.eclipse.persistence.jpa.rs.features.FeatureSet.Feature)
     */
    @Override
    public FeatureRequestValidator getRequestValidator(Feature feature) {
        switch (feature) {
            case PAGING:
                return new PagingRequestValidator();
            default:
                return new FeatureRequestValidatorImpl();
        }
    }

    /* (non-Javadoc)
     * @see org.eclipse.persistence.jpa.rs.features.FeatureSet#getResponseBuilder(org.eclipse.persistence.jpa.rs.features.FeatureSet.Feature)
     */
    @Override
    public FeatureResponseBuilder getResponseBuilder(Feature feature) {
        switch (feature) {
            case PAGING:
                return new PagingResponseBuilder();
            case NO_PAGING:
            default:
                return new SelfLinksResponseBuilder();
        }
    }
}
TOP

Related Classes of org.eclipse.persistence.jpa.rs.features.FeatureSetV2

TOP
Copyright © 2018 www.massapi.com. 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.