com.genesys.provisioning.models.WweProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of provisioning Show documentation
Show all versions of provisioning Show documentation
A Java library to interface to Genesys Provisioning public API
package com.genesys.provisioning.models;
import java.util.Map;
import java.util.List;
import java.util.ArrayList;
public class WweProperties {
private List roles = new ArrayList();
WweProperties() {
}
WweProperties(Map in) {
if(in.containsKey("roles")) this.roles = (List)in.get("roles");
}
public void setRoles(List roles) {
this.roles = roles;
}
public List getRoles() {
return this.roles;
}
@Override
public String toString() {
return roles.toString();
}
}