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

io.sphere.sdk.zones.queries.ZoneByIdFetch Maven / Gradle / Ivy

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

import io.sphere.sdk.queries.ByIdFetchImpl;
import io.sphere.sdk.zones.Zone;

/**
 Gets a zone by ID.

 {@include.example io.sphere.sdk.zones.queries.ZoneByIdFetchTest#fetchById()}
 */
public class ZoneByIdFetch extends ByIdFetchImpl {
    private ZoneByIdFetch(final String id) {
        super(id, ZoneEndpoint.ENDPOINT);
    }

    public static ZoneByIdFetch of(final String id) {
        return new ZoneByIdFetch(id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy