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

io.sphere.sdk.states.queries.StateQueryModel Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.states.queries;


import io.sphere.sdk.queries.ResourceQueryModelImpl;
import io.sphere.sdk.queries.QueryModel;
import io.sphere.sdk.queries.StringQuerySortingModel;
import io.sphere.sdk.states.State;

public class StateQueryModel extends ResourceQueryModelImpl {

    private StateQueryModel(final QueryModel parent, final String pathSegment) {
        super(parent, pathSegment);
    }

    public static StateQueryModel of() {
        return new StateQueryModel(null, null);
    }

    public StringQuerySortingModel key() {
        return stringModel("key");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy