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

io.sphere.sdk.jsonnodes.queries.JsonNodeQueryModelImpl Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.jsonnodes.queries;

import com.fasterxml.jackson.databind.JsonNode;
import io.sphere.sdk.queries.QueryPredicate;
import io.sphere.sdk.queries.ResourceQueryModelImpl;

final class JsonNodeQueryModelImpl extends ResourceQueryModelImpl implements JsonNodeQueryModel {
    protected JsonNodeQueryModelImpl() {
        super(null, null);
    }

    @Override
    public QueryPredicate predicate(final String predicateAsString) {
        return QueryPredicate.of(predicateAsString);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy