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

com.manywho.sdk.api.draw.elements.group.GroupAuthorization Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.api.draw.elements.group;

import java.util.List;

public class GroupAuthorization {
    private String serviceElementId;
    private String globalAuthenticationType;
    private String streamBehaviourType;
    private List groups;
    private List users;
    private List locations;

    public String getServiceElementId() {
        return serviceElementId;
    }

    public void setServiceElementId(String serviceElementId) {
        this.serviceElementId = serviceElementId;
    }

    public String getGlobalAuthenticationType() {
        return globalAuthenticationType;
    }

    public void setGlobalAuthenticationType(String globalAuthenticationType) {
        this.globalAuthenticationType = globalAuthenticationType;
    }

    public String getStreamBehaviourType() {
        return streamBehaviourType;
    }

    public void setStreamBehaviourType(String streamBehaviourType) {
        this.streamBehaviourType = streamBehaviourType;
    }

    public List getGroups() {
        return groups;
    }

    public void setGroups(List groups) {
        this.groups = groups;
    }

    public List getUsers() {
        return users;
    }

    public void setUsers(List users) {
        this.users = users;
    }

    public List getLocations() {
        return locations;
    }

    public void setLocations(List locations) {
        this.locations = locations;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy