blob: 7497f26ff9acecd2f1a1d60e85ccfb6a49180a67 [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 backtype.storm.scheduler;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
public class SupervisorDetails {
String id;
/**
* hostname of this supervisor
*/
String host;
Object meta;
/**
* meta data configured for this supervisor
*/
Object schedulerMeta;
/**
* all the ports of the supervisor
*/
Set<Integer> allPorts;
public SupervisorDetails(String id, Object meta){
this.id = id;
this.meta = meta;
allPorts = new HashSet();
}
public SupervisorDetails(String id, Object meta, Collection<Number> allPorts){
this.id = id;
this.meta = meta;
setAllPorts(allPorts);
}
public SupervisorDetails(String id, String host, Object schedulerMeta, Collection<Number> allPorts){
this.id = id;
this.host = host;
this.schedulerMeta = schedulerMeta;
setAllPorts(allPorts);
}
private void setAllPorts(Collection<Number> allPorts) {
this.allPorts = new HashSet<Integer>();
if(allPorts!=null) {
for(Number n: allPorts) {
this.allPorts.add(n.intValue());
}
}
}
public String getId() {
return id;
}
public String getHost() {
return host;
}
public Object getMeta() {
return meta;
}
public Set<Integer> getAllPorts() {
return allPorts;
}
public Object getSchedulerMeta() {
return this.schedulerMeta;
}
}