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

com.aliyun.openservices.log.request.GetLogstoreReplicationRequest Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.request;

public class GetLogstoreReplicationRequest extends Request {

    private static final long serialVersionUID = 7579138643389312274L;
    private String logStore;
    protected boolean enable;

    public GetLogstoreReplicationRequest(String project, String logStore) {
        super(project);
        setLogStore(logStore);
    }

    public void setLogStore(String logStore) {
        this.logStore = logStore;
    }

    public String getLogStore() {
        return logStore;
    }

    public void setEnable(boolean enable) {
        this.enable = enable;
    }

    public boolean getEnable() {
        return enable;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy