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

org.eclipse.ditto.connectivity.model.LogEntryBuilder Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
/*
 * Copyright (c) 2019 Contributors to the Eclipse Foundation
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package org.eclipse.ditto.connectivity.model;

import java.time.Instant;

import javax.annotation.Nullable;

import org.eclipse.ditto.base.model.entity.id.EntityId;

/**
 * A mutable builder for a {@link LogEntry} with a fluent API.
 */
public interface LogEntryBuilder {

    /**
     * @param correlationId  correlation ID that is associated with the log entry.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder correlationId(String correlationId);

    /**
     * @param timestamp  timestamp of the log entry.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder timestamp(Instant timestamp);

    /**
     * @param logCategory  category of the log entry.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder logCategory(LogCategory logCategory);

    /**
     * @param logType  type of the log entry.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder logType(LogType logType);

    /**
     * @param logLevel  the log level.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder logLevel(LogLevel logLevel);

    /**
     * @param message  the log message.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder message(String message);

    /**
     * @param address if the log can be correlated to a known source or target, empty otherwise.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder address(@Nullable String address);

    /**
     * @param entityId entity ID if the log can be correlated to a known entity (e.g. a Thing), empty otherwise.
     * @return this builder to allow method chaining.
     */
    LogEntryBuilder entityId(@Nullable EntityId entityId);

    /**
     * Builds a new {@link LogEntry}.
     * @return the new {@link LogEntry}.
     */
    LogEntry build();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy