com.farao_community.farao.data.crac_impl.AbstractRangeAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of farao-crac-impl Show documentation
Show all versions of farao-crac-impl Show documentation
Object model for CRAC implementation
/*
* Copyright (c) 2019, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.farao_community.farao.data.crac_impl;
import com.farao_community.farao.data.crac_api.range_action.RangeAction;
import com.farao_community.farao.data.crac_api.usage_rule.UsageRule;
import java.util.List;
import java.util.Optional;
/**
* @author Joris Mancini {@literal }
*/
public abstract class AbstractRangeAction> extends AbstractRemedialAction implements RangeAction {
protected String groupId = null;
AbstractRangeAction(String id, String name, String operator, List usageRules, String groupId, Integer speed) {
super(id, name, operator, usageRules, speed);
this.groupId = groupId;
}
@Override
public Optional getGroupId() {
return Optional.ofNullable(groupId);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AbstractRangeAction> otherRa = (AbstractRangeAction>) o;
return super.equals(o)
&& (groupId == null && otherRa.getGroupId().isEmpty() || groupId != null && groupId.equals(otherRa.getGroupId().orElse(null)));
}
@Override
public int hashCode() {
int result = super.hashCode();
String nonNullGroupId = groupId == null ? "" : groupId;
result = 31 * result + nonNullGroupId.hashCode();
return result;
}
}