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

org.cloudfoundry.multiapps.controller.api.model.Log Maven / Gradle / Ivy

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

import java.util.Date;

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

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

import io.swagger.annotations.ApiModelProperty;

@Value.Immutable
@JsonSerialize(as = ImmutableLog.class)
@JsonDeserialize(as = ImmutableLog.class)
public interface Log {

    @Nullable
    @ApiModelProperty
    @JsonProperty("id")
    String getId();

    @Nullable
    @ApiModelProperty
    @JsonProperty("lastModified")
    Date getLastModified();

    @Nullable
    @ApiModelProperty
    @JsonProperty("content")
    String getContent();

    @Nullable
    @ApiModelProperty
    @JsonProperty("size")
    Long getSize();

    @Nullable
    @ApiModelProperty
    @JsonProperty("displayName")
    String getDisplayName();

    @Nullable
    @ApiModelProperty
    @JsonProperty("description")
    String getDescription();

    @Nullable
    @ApiModelProperty
    @JsonProperty("externalInfo")
    String getExternalInfo();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy