com.genesys.workspace.models.cfg.Transaction 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.cfg;
import com.genesys.workspace.models.KeyValueCollection;
public class Transaction {
private String name;
private String alias;
private KeyValueCollection userProperties;
public Transaction(String name, String alias, KeyValueCollection userProperties) {
this.name = name;
this.alias = alias;
this.userProperties = userProperties;
}
public KeyValueCollection getUserProperties() {
return userProperties;
}
public String getName() {
return this.name;
}
public String getAlias() {
return this.alias;
}
@Override
public String toString() {
return "name [" + this.name + "] alias [" + this.alias + "] userProperties " + this.userProperties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy