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

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

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

import io.sphere.sdk.queries.MetaModelGetDslBuilder;
import io.sphere.sdk.queries.MetaModelGetDslImpl;
import io.sphere.sdk.zones.Zone;
import io.sphere.sdk.zones.expansion.ZoneExpansionModel;

/**
 Gets a zone by ID.

 {@include.example io.sphere.sdk.zones.queries.ZoneByIdGetTest#fetchById()}
 */
final class ZoneByIdGetImpl extends MetaModelGetDslImpl> implements ZoneByIdGet {
    ZoneByIdGetImpl(final String id) {
        super(id, ZoneEndpoint.ENDPOINT, ZoneExpansionModel.of(), ZoneByIdGetImpl::new);
    }

    public ZoneByIdGetImpl(MetaModelGetDslBuilder> builder) {
        super(builder);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy