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

com.alibaba.spring.boot.rsocket.broker.smi.TrafficSpec Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package com.alibaba.spring.boot.rsocket.broker.smi;

import java.util.Set;

/**
 * Traffic Spec: 避免大量对象生成,采用flight weight pattern
 *
 * @author linux_china
 */
public class TrafficSpec {
    private Set orgs;
    private Set serviceAccounts;
    private String appName;
    private String targetService;

    public Set getOrgs() {
        return orgs;
    }

    public void setOrgs(Set orgs) {
        this.orgs = orgs;
    }

    public Set getServiceAccounts() {
        return serviceAccounts;
    }

    public void setServiceAccounts(Set serviceAccounts) {
        this.serviceAccounts = serviceAccounts;
    }

    public String getAppName() {
        return appName;
    }

    public void setAppName(String appName) {
        this.appName = appName;
    }

    public String getTargetService() {
        return targetService;
    }

    public void setTargetService(String targetService) {
        this.targetService = targetService;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy