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

odata.test.trip.pin.entity.collection.request.PublicTransportationCollectionRequest 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.PublicTransportation;
import odata.test.trip.pin.entity.request.PublicTransportationRequest;
import odata.test.trip.pin.schema.SchemaInfo;

public final class PublicTransportationCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public PublicTransportationCollectionRequest(ContextPath contextPath) {
        super(contextPath, PublicTransportation.class, cp -> new PublicTransportationRequest(cp), SchemaInfo.INSTANCE);
        this.contextPath = contextPath;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy