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

ru.whoisamyy.api.plugins.commands.AbstractCommentCommand Maven / Gradle / Ivy

There is a newer version: 0.0.4-release
Show newest version
package ru.whoisamyy.api.plugins.commands;

import lombok.Getter;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

public abstract class AbstractCommentCommand implements CommentCommandHandler {
    protected Logger logger;
    @Getter protected String name;

    public AbstractCommentCommand(String name) {
        this.name = name;
        this.logger = LogManager.getLogger(this.getClass());
    }

    public AbstractCommentCommand() {
        this.logger = LogManager.getLogger(this.getClass());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy