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

odata.test.trip.pin.entity.collection.request.AirportCollectionRequest Maven / Gradle / Ivy

There is a newer version: 0.1.13
Show newest version
package odata.test.trip.pin.entity.collection.request;

import com.github.davidmoten.odata.client.CollectionPageEntityRequest;
import com.github.davidmoten.odata.client.ContextPath;
import odata.test.trip.pin.entity.Airport;
import odata.test.trip.pin.entity.request.AirportRequest;
import odata.test.trip.pin.schema.SchemaInfo;

public final class AirportCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public AirportCollectionRequest(ContextPath contextPath) {
        super(contextPath, Airport.class, cp -> new AirportRequest(cp), SchemaInfo.INSTANCE);
        this.contextPath = contextPath;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy