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

io.sphere.sdk.zones.queries.ZoneFetchById 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.FetchByIdImpl;
import io.sphere.sdk.zones.Zone;

/**
 Gets a zone by ID.

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy