blob: 9299a162ed2fecc232d8f45d6406f8be695aae85 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.slider.server.appmaster.web.rest.agent;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;
import org.codehaus.jackson.map.annotate.JsonSerialize;
/**
*
* Data model for agent to send heartbeat to ambari and/or app master.
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
public class Register {
private int responseId = -1;
private long timestamp;
private String hostname;
private int currentPingPort;
private HostInfo hardwareProfile;
private String publicHostname;
private AgentEnv agentEnv;
private String agentVersion;
@JsonProperty("responseId")
public int getResponseId() {
return responseId;
}
@JsonProperty("responseId")
public void setResponseId(int responseId) {
this.responseId=responseId;
}
public long getTimestamp() {
return timestamp;
}
public String getHostname() {
return hostname;
}
public void setHostname(String hostname) {
this.hostname = hostname;
}
public HostInfo getHardwareProfile() {
return hardwareProfile;
}
public void setHardwareProfile(HostInfo hardwareProfile) {
this.hardwareProfile = hardwareProfile;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public String getPublicHostname() {
return publicHostname;
}
public void setPublicHostname(String name) {
this.publicHostname = name;
}
public AgentEnv getAgentEnv() {
return agentEnv;
}
public void setAgentEnv(AgentEnv env) {
this.agentEnv = env;
}
public String getAgentVersion() {
return agentVersion;
}
public void setAgentVersion(String agentVersion) {
this.agentVersion = agentVersion;
}
public int getCurrentPingPort() {
return currentPingPort;
}
public void setCurrentPingPort(int currentPingPort) {
this.currentPingPort = currentPingPort;
}
@Override
public String toString() {
String ret = "responseId=" + responseId + "\n" +
"timestamp=" + timestamp + "\n" +
"hostname=" + hostname + "\n" +
"currentPingPort=" + currentPingPort + "\n";
if (hardwareProfile != null)
ret = ret + "hardwareprofile=" + this.hardwareProfile.toString();
return ret;
}
}