com.genesys.workspace.models.targets.availability.AgentAvailability Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workspace Show documentation
Show all versions of workspace Show documentation
A Java library to interface to Genesys Workspace public API
package com.genesys.workspace.models.targets.availability;
import java.util.Collection;
public class AgentAvailability extends TargetAvailability {
private Collection channels;
public AgentAvailability(Collection channels) {
this.channels = channels;
}
public Collection getChannels() {
return channels;
}
@Override
public String toString() {
String str = "channels: ";
if (this.channels != null && !this.channels.isEmpty()) {
for(ChannelAvailability channelAvailability : this.channels) {
str += channelAvailability + " ";
}
}
return str;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy