com.facebook.presto.verifier.prestoaction.ClientInfo Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.facebook.presto.verifier.prestoaction;
import com.facebook.airlift.json.JsonCodec;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Optional;
import static com.facebook.airlift.json.JsonCodec.jsonCodec;
import static java.util.Objects.requireNonNull;
public class ClientInfo
{
private static final String CLIENT_INFO_TYPE = "VERIFIER";
private static final JsonCodec CLIENT_INFO_JSON_CODEC = jsonCodec(ClientInfo.class);
private final String testId;
private final Optional testName;
private final String sourceQueryName;
private final String suite;
private final String queryStage;
public ClientInfo(String testId, Optional testName, String sourceQueryName, String suite, String queryStage)
{
this.testId = requireNonNull(testId, "testId is null");
this.testName = requireNonNull(testName, "testName is null");
this.sourceQueryName = requireNonNull(sourceQueryName, "sourceQueryName is null");
this.suite = requireNonNull(suite, "suite is null");
this.queryStage = requireNonNull(queryStage, "queryStage is null");
}
@JsonProperty
public String getType()
{
return CLIENT_INFO_TYPE;
}
@JsonProperty
public String getTestId()
{
return testId;
}
@JsonProperty
public Optional getTestName()
{
return testName;
}
@JsonProperty
public String getSourceQueryName()
{
return sourceQueryName;
}
@JsonProperty
public String getSuite()
{
return suite;
}
@JsonProperty
public String getQueryStage()
{
return queryStage;
}
public String serialize()
{
return CLIENT_INFO_JSON_CODEC.toJson(this).replaceAll("\\n", "");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy