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

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

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

import java.time.ZonedDateTime;

/**
 * A default model view is a view for a resource in SPHERE.IO always consists of the fields
 * id, version, createdAt, lastModifiedAt.
 * @param  the interface which inherits from this interface
 * @param  the interface which belongs to {@link Versioned}
 *
 */
public interface ResourceView extends Timestamped, Versioned {
    @Override
    String getId();

    @Override
    Long getVersion();

    @Override
    ZonedDateTime getCreatedAt();

    @Override
    ZonedDateTime getLastModifiedAt();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy