panel.add(new ContentDescription(Console.CONSTANTS.subys_tx_desc()));
// -----
NumberBoxItem defaultTimeout = new NumberBoxItem("defaultTimeout", "Default Timeout");
CheckBoxItem enableStatistics = new CheckBoxItem("enableStatistics", "Enable Statistics");
CheckBoxItem enableTsm = new CheckBoxItem("enableTsmStatus", "Enable TSM Status");
final CheckBoxItem jts = new CheckBoxItem("jts", "Enable JTS") {
@Override
public String getErrMessage() {
return super.getErrMessage();
}
};
TextBoxItem nodeId = new TextBoxItem("nodeIdentifier", "Node Identifier");
final CheckBoxItem processIdUUID = new CheckBoxItem("processIdUUID", "Process ID UUID?");
final TextBoxItem processIdSocket = new TextBoxItem("processIdSocketBinding", "Process ID Socket") {
@Override
public String getErrMessage() {
return "Invalid input: no whitespace, no special, required if UUID is un-checked";
}
};
NumberBoxItem processIdPortMax = new NumberBoxItem("processIdMaxPorts", "Max Ports");
CheckBoxItem useHornetq = new CheckBoxItem("hornetqStore", "Use HornetQ Store?");
TextBoxItem path = new TextBoxItem("path", "Path");
TextBoxItem relativeTo = new TextBoxItem("relativeTo", "Relative To");
TextBoxItem objectStorePath = new TextBoxItem("objectStorePath", "Object Store Path");
TextBoxItem objectStorePathRelativeTo = new TextBoxItem("objectStoreRelativeTo", "Object Store Relative To");
CheckBoxItem recoveryListener = new CheckBoxItem("recoveryListener", "Recovery Listener");
TextBoxItem socketBinding = new TextBoxItem("socketBinding", "Socket Binding");
TextBoxItem statusSocketBinding = new TextBoxItem("statusSocketBinding", "Status Socket Binding");
// ---