@@ -45,11 +45,6 @@ public void setInput(byte[] input) {
45
45
this .input = input ;
46
46
}
47
47
48
- public QueryWorkflowParameters withInput (byte [] input ) {
49
- this .input = input ;
50
- return this ;
51
- }
52
-
53
48
public String getRunId () {
54
49
return runId ;
55
50
}
@@ -58,11 +53,6 @@ public void setRunId(String runId) {
58
53
this .runId = runId ;
59
54
}
60
55
61
- public QueryWorkflowParameters withRunId (String runId ) {
62
- this .runId = runId ;
63
- return this ;
64
- }
65
-
66
56
public String getQueryType () {
67
57
return queryType ;
68
58
}
@@ -71,11 +61,6 @@ public void setQueryType(String queryType) {
71
61
this .queryType = queryType ;
72
62
}
73
63
74
- public QueryWorkflowParameters withQueryType (String queryType ) {
75
- this .queryType = queryType ;
76
- return this ;
77
- }
78
-
79
64
public String getWorkflowId () {
80
65
return workflowId ;
81
66
}
@@ -84,11 +69,6 @@ public void setWorkflowId(String workflowId) {
84
69
this .workflowId = workflowId ;
85
70
}
86
71
87
- public QueryWorkflowParameters withWorkflowId (String workflowId ) {
88
- this .workflowId = workflowId ;
89
- return this ;
90
- }
91
-
92
72
public QueryRejectCondition getQueryRejectCondition () {
93
73
return queryRejectCondition ;
94
74
}
@@ -97,12 +77,6 @@ public void setQueryRejectCondition(QueryRejectCondition queryRejectCondition) {
97
77
this .queryRejectCondition = queryRejectCondition ;
98
78
}
99
79
100
- public QueryWorkflowParameters withQueryRejectCondition (
101
- QueryRejectCondition queryRejectCondition ) {
102
- this .queryRejectCondition = queryRejectCondition ;
103
- return this ;
104
- }
105
-
106
80
public QueryConsistencyLevel getQueryConsistencyLevel () {
107
81
return queryConsistencyLevel ;
108
82
}
@@ -111,18 +85,15 @@ public void setQueryConsistencyLevel(QueryConsistencyLevel queryConsistencyLevel
111
85
this .queryConsistencyLevel = queryConsistencyLevel ;
112
86
}
113
87
114
- public QueryWorkflowParameters withQueryConsistencyLevel (
115
- QueryConsistencyLevel queryConsistencyLevel ) {
116
- this .queryConsistencyLevel = queryConsistencyLevel ;
117
- return this ;
118
- }
119
-
120
88
@ Override
121
89
public String toString () {
122
90
StringBuilder sb = new StringBuilder ();
123
91
sb .append ("{" );
124
92
sb .append ("QueryName: " + queryType + ", " );
125
- sb .append ("Input: " + new String (input , 0 , 512 , StandardCharsets .UTF_8 ) + ", " );
93
+ sb .append (
94
+ "Input: "
95
+ + new String (input , 0 , Math .min (512 , input .length ), StandardCharsets .UTF_8 )
96
+ + ", " );
126
97
sb .append ("WorkflowId: " + workflowId + ", " );
127
98
sb .append ("RunId: " + runId + ", " );
128
99
sb .append ("QueryRejectCondition: " + queryRejectCondition + ", " );
0 commit comments