org.apache.flink.shaded.jackson2.com.fasterxml.jackson.annotation.JsonIgnore Java Examples
The following examples show how to use
org.apache.flink.shaded.jackson2.com.fasterxml.jackson.annotation.JsonIgnore.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JobAccumulatorsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public Map<String, SerializedValue<OptionalFailure<Object>>> getSerializedUserAccumulators() { return serializedUserAccumulators; }
Example #2
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public String getJsonPlan() { return jsonPlan; }
Example #3
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public long getEndTime() { return endTime; }
Example #4
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public String getName() { return name; }
Example #5
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public long getEndTime() { return endTime; }
Example #6
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public IOMetricsInfo getJobVertexMetrics() { return jobVertexMetrics; }
Example #7
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public Collection<JobVertexDetailsInfo> getJobVertexInfos() { return jobVertexInfos; }
Example #8
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public Map<JobStatus, Long> getTimestamps() { return timestamps; }
Example #9
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public long getNow() { return now; }
Example #10
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public long getDuration() { return duration; }
Example #11
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public Map<ExecutionState, Integer> getJobVerticesPerState() { return jobVerticesPerState; }
Example #12
Source File: AggregatedMetric.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public String getId() { return id; }
Example #13
Source File: JobAccumulatorsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public String getValue() { return value; }
Example #14
Source File: JobAccumulatorsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public String getType() { return type; }
Example #15
Source File: JobAccumulatorsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public String getName() { return name; }
Example #16
Source File: AggregatedMetric.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public Double getMin() { return min; }
Example #17
Source File: JobAccumulatorsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public List<UserTaskAccumulator> getUserAccumulators() { return userAccumulators; }
Example #18
Source File: JobAccumulatorsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public List<JobAccumulator> getJobAccumulators() { return jobAccumulators; }
Example #19
Source File: JobVertexDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public int getAttempt() { return attempt; }
Example #20
Source File: JobVertexDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public List<VertexTaskDetail> getSubtasks() { return Collections.unmodifiableList(subtasks); }
Example #21
Source File: JobPlanInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public String getJsonPlan() { return jsonPlan.json; }
Example #22
Source File: JobDetailsInfo.java From flink with Apache License 2.0 | 4 votes |
@JsonIgnore public long getDuration() { return duration; }
Example #23
Source File: JarRunRequestBody.java From flink with Apache License 2.0 | 4 votes |
@Nullable @JsonIgnore public Boolean getAllowNonRestoredState() { return allowNonRestoredState; }
Example #24
Source File: JarRequestBody.java From flink with Apache License 2.0 | 4 votes |
@Nullable @JsonIgnore public JobID getJobId() { return jobId; }
Example #25
Source File: JarRequestBody.java From flink with Apache License 2.0 | 4 votes |
@Nullable @JsonIgnore public Integer getParallelism() { return parallelism; }
Example #26
Source File: JarRequestBody.java From flink with Apache License 2.0 | 4 votes |
@Nullable @JsonIgnore public List<String> getProgramArgumentsList() { return programArgumentsList; }
Example #27
Source File: JarRequestBody.java From flink with Apache License 2.0 | 4 votes |
@Nullable @JsonIgnore public String getProgramArguments() { return programArguments; }
Example #28
Source File: JarRequestBody.java From flink with Apache License 2.0 | 4 votes |
@Nullable @JsonIgnore public String getEntryClassName() { return entryClassName; }
Example #29
Source File: DMetric.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
@JsonIgnore public abstract Number getMetricValue();
Example #30
Source File: SavepointDisposalRequest.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
@JsonIgnore public String getSavepointPath() { return savepointPath; }