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

org.cloudfoundry.multiapps.controller.persistence.model.FileEntry Maven / Gradle / Ivy

There is a newer version: 1.176.0
Show newest version
package org.cloudfoundry.multiapps.controller.persistence.model;

import java.math.BigInteger;
import java.time.LocalDateTime;

import org.cloudfoundry.multiapps.common.Nullable;
import org.immutables.value.Value;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;

@Value.Immutable
@JsonSerialize(as = ImmutableFileEntry.class)
@JsonDeserialize(as = ImmutableFileEntry.class)
public interface FileEntry {

    @Nullable
    String getId();

    @Nullable
    String getName();

    @Nullable
    String getNamespace();

    @Nullable
    String getSpace();

    @Nullable
    BigInteger getSize();

    @Nullable
    String getDigest();

    @Nullable
    String getDigestAlgorithm();

    @Nullable
    LocalDateTime getModified();

    @Nullable
    String getOperationId();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy