com.genesys.workspace.models.cfg.BusinessAttributeValue 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;
public class BusinessAttributeValue {
private long dbid;
private String name;
private String displayName;
private String description;
private Object defaultValue;
public BusinessAttributeValue(
long dbid,
String name,
String displayName,
String description,
Object defaultValue
) {
this.dbid = dbid;
this.name = name;
this.displayName = displayName;
this.description = description;
this.defaultValue = defaultValue;
}
public long getDBID() {
return this.dbid;
}
public String getName() {
return this.name;
}
public String getDisplayName() {
return this.displayName;
}
public String getDescription() {
return this.description;
}
public Object getDefaultValue() {
return this.defaultValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy