
com.almworks.jira.structure.api2g.v2.InteractionParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
package com.almworks.jira.structure.api2g.v2;
import java.util.List;
/**
* @author pashky
*/
public class InteractionParameter {
private final long myRowId;
private final String myParameterId;
private final String myMessage;
private final List myValues;
public InteractionParameter(long rowId, String parameterId, String message, List values) {
myRowId = rowId;
myParameterId = parameterId;
myMessage = message;
myValues = values;
}
public long getRowId() {
return myRowId;
}
public String getParameterId() {
return myParameterId;
}
public String getMessage() {
return myMessage;
}
public List getValues() {
return myValues;
}
@Override
public String toString() {
return myRowId + ":" + myParameterId + "?" + (myValues.isEmpty() ? "" : myValues);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy