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

io.github.sinri.keel.logger.event.KeelEventLog Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
package io.github.sinri.keel.logger.event;

import io.github.sinri.keel.logger.issue.record.BaseIssueRecord;

import javax.annotation.Nonnull;

/**
 * @since 3.2.0
 */
public final class KeelEventLog extends BaseIssueRecord {
    private @Nonnull String topic;

    public KeelEventLog(@Nonnull String topic) {
        this.topic = topic;
    }

    @Nonnull
    @Override
    public KeelEventLog getImplementation() {
        return this;
    }

    @Nonnull
    @Override
    public String topic() {
        return topic;
    }

    @Nonnull
    public KeelEventLog topic(@Nonnull String topic) {
        this.topic = topic;
        return this;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy