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

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

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

import com.aliyun.openservices.log.common.SubStore;

public class CreateSubStoreRequest extends Request {

    private String logStoreName;
    private SubStore subStore;

    public CreateSubStoreRequest(String project) {
        super(project);
    }

    public CreateSubStoreRequest(String project, String logStoreName, SubStore subStore) {
        super(project);
        this.logStoreName = logStoreName;
        this.subStore = subStore;
    }

    public String getLogStoreName() {
        return logStoreName;
    }

    public void setLogStoreName(String logStoreName) {
        this.logStoreName = logStoreName;
    }

    public SubStore getSubStore() {
        return subStore;
    }

    public void setSubStore(SubStore subStore) {
        this.subStore = subStore;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy