blob: ada68614a56c05cfda238eee1e4a4d6b2926d727 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.messaging.event.skynet.event;
/**
* @author Donald G. Dunne
* @author Robert A. Fisher
*/
public class NetworkRelationLinkOrderModifiedEvent extends SkynetRelationLinkEventBase {
private static final long serialVersionUID = 548299278567054333L;
private final String rationale;
int aOrder;
int bOrder;
/**
* @param branchId
* @param transactionId
* @param relId
* @param artAId
* @param artBId
* @param author
* @param relTypeId
*/
public NetworkRelationLinkOrderModifiedEvent(int gammaId, int branchId, int relId, int artAId, int artATypeId, int artBId, int artBTypeId, String rationale, int aOrder, int bOrder, NetworkSender networkSender, int relTypeId) {
super(relTypeId, gammaId, branchId, relId, artAId, artATypeId, artBId, artBTypeId, networkSender);
this.rationale = rationale;
this.aOrder = aOrder;
this.bOrder = bOrder;
}
/**
* @return Returns the aOrder.
*/
public int getAOrder() {
return aOrder;
}
/**
* @return Returns the bOrder.
*/
public int getBOrder() {
return bOrder;
}
/**
* @return Returns the rationale.
*/
public String getRationale() {
return rationale;
}
@Override
public boolean equals(Object obj) {
if (obj instanceof NetworkRelationLinkOrderModifiedEvent) {
return (getRelId() == (((NetworkRelationLinkOrderModifiedEvent) obj).getRelId()));
}
return super.equals(obj);
}
@Override
public int hashCode() {
return getRelId();
}
}