io.sphere.sdk.zones.queries.ZoneQueryModelImpl Maven / Gradle / Ivy
package io.sphere.sdk.zones.queries;
import io.sphere.sdk.queries.ResourceQueryModelImpl;
import io.sphere.sdk.queries.QueryModel;
import io.sphere.sdk.queries.StringQuerySortingModel;
import io.sphere.sdk.zones.Zone;
final class ZoneQueryModelImpl extends ResourceQueryModelImpl implements ZoneQueryModel {
ZoneQueryModelImpl(final QueryModel parent, final String pathSegment) {
super(parent, pathSegment);
}
@Override
public StringQuerySortingModel name() {
return stringModel("name");
}
@Override
public LocationsCollectionQueryModel locations() {
return new LocationsCollectionQueryModelImpl<>(this, "locations");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy