blob: 509ef14495fb68a071d9710e29af70d167e249d8 [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.storm.localizer;
import org.apache.storm.generated.LocalAssignment;
/**
* A Port and a LocalAssignment used to reference count resources.
*/
class PortAndAssignmentImpl implements PortAndAssignment {
private final int port;
private final LocalAssignment assignment;
PortAndAssignmentImpl(int port, LocalAssignment assignment) {
this.port = port;
this.assignment = assignment;
}
/**
* All implementations of PortAndAssignment should implement the same equals() method.
*/
@Override
public boolean equals(Object other) {
if (!(other instanceof PortAndAssignment)) {
return false;
}
PortAndAssignment pna = (PortAndAssignment) other;
return pna.getPort() == getPort() && getAssignment().equals(pna.getAssignment());
}
@Override
public String getToplogyId() {
return assignment.get_topology_id();
}
@Override
public String getOwner() {
return assignment.get_owner();
}
/**
* All implementations of PortAndAssignment should implement the same hashCode() method.
*/
@Override
public int hashCode() {
return (17 * getPort()) + getAssignment().hashCode();
}
@Override
public String toString() {
return "PortAndAssignmentImpl{" + assignment.get_topology_id() + " on " + port + "}";
}
/**
* Return the port associated with this.
*/
@Override
public int getPort() {
return port;
}
/**
* return the assigment for this.
*/
@Override
public LocalAssignment getAssignment() {
return assignment;
}
}