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

io.sphere.sdk.models.ResourceIdentifier Maven / Gradle / Ivy

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

import javax.annotation.Nullable;

public interface ResourceIdentifier extends ResourceIdentifiable {
    @Nullable
    String getId();

    @Nullable
    String getKey();

    @Nullable
    String getTypeId();

    @Override
    default ResourceIdentifier toResourceIdentifier() {
        return this;
    }

    static  ResourceIdentifier ofKey(final String key) {
        return ofKey(key, null);
    }

    static  ResourceIdentifier ofKey(final String key, final String typeId) {
        return ofIdOrKey(null, key, typeId);
    }

    static  ResourceIdentifier ofId(final String id) {
        return ofId(id, null);
    }

    static  ResourceIdentifier ofId(final String id, final String typeId) {
        return ofIdOrKey(id, null, typeId);
    }

    static  ResourceIdentifier ofIdOrKey(@Nullable final String id, @Nullable final String key) {
        return ofIdOrKey(id, key, null);
    }

    static  ResourceIdentifier ofIdOrKey(@Nullable final String id, @Nullable final String key, @Nullable final String typeId) {
        return new ResourceIdentifierImpl<>(id, key, typeId);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy