001
002package com.commercetools.api.models;
003
004import com.commercetools.api.models.common.ResourceIdentifier;
005
006/**
007 * Interface of a resource with an ID and version
008 * @param <T> the type of the resource which is referenced to
009 */
010public interface ResourceIdentifiable<T extends ResourceIdentifiable<T>> extends Identifiable<T> {
011    public ResourceIdentifier toResourceIdentifier();
012}