io.github.sinri.keel.logger.event.KeelEventLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
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