com.manywho.sdk.api.draw.elements.group.GroupAuthorization Maven / Gradle / Ivy
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