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

odata.test.trip.pin.entity.collection.request.PlanItemCollectionRequest 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.PlanItem;
import odata.test.trip.pin.entity.request.PlanItemRequest;
import odata.test.trip.pin.schema.SchemaInfo;

public final class PlanItemCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public PlanItemCollectionRequest(ContextPath contextPath) {
        super(contextPath, PlanItem.class, cp -> new PlanItemRequest(cp), SchemaInfo.INSTANCE);
        this.contextPath = contextPath;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy