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

com.genesys.provisioning.models.WweProperties Maven / Gradle / Ivy

There is a newer version: 9.0.75
Show newest version
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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy