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

com.taobao.middleware.logger.option.AbstractActiveOption Maven / Gradle / Ivy

package com.taobao.middleware.logger.option;

/**
 * Created by zhuyong on 15/3/3.
 */
public abstract class AbstractActiveOption implements ActivateOption{

    protected String productName;

    @Override
    public String getProductName() {
        return productName;
    }

    protected void setProductName(String productName) {
        if (this.productName == null && productName != null) {
            this.productName = productName;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy