blob: 286e861aea3b47ce6ff2f40268963c89c6f6be04 [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.ambari.server.events;
import java.util.Collections;
import java.util.Set;
import org.apache.ambari.server.state.Cluster;
/**
* The {@link HostRemovedEvent} class is fired when a host is removed from the
* cluster.
*/
public class HostRemovedEvent extends HostEvent {
/**
* The clusters that the removed host belonged to.
*/
private final Set<Cluster> m_clusters;
/**
* Constructor.
*
* @param hostName
*/
public HostRemovedEvent(String hostName, Set<Cluster> clusters) {
super(AmbariEventType.HOST_REMOVED, hostName);
m_clusters = clusters;
}
/**
* The clusters that the host belonged to.
*
* @return the clusters, or an empty set.
*/
public Set<Cluster> getClusters() {
if (null == m_clusters) {
return Collections.emptySet();
}
return m_clusters;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
StringBuilder buffer = new StringBuilder("HostRemovedEvent{");
buffer.append("hostName=").append(m_hostName);
buffer.append("}");
return buffer.toString();
}
}