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

com.genesys.workspace.models.targets.availability.AgentAvailability Maven / Gradle / Ivy

There is a newer version: 9.0.73
Show newest version
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