blob: 70c45b54f2d0910785065fac77fe7eccb3bb00fc [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;
import org.eclipse.osee.framework.messaging.event.skynet.ISkynetEvent;
/**
* @author Robert A. Fisher
*/
public class SkynetEventBase implements ISkynetEvent {
private static final long serialVersionUID = -5381855085551886510L;
private final NetworkSender networkSender;
/**
* @return the networkSender
*/
public NetworkSender getNetworkSender() {
return networkSender;
}
/**
* @param branchId
* @param transactionId
* @param author
*/
public SkynetEventBase(NetworkSender networkSender) {
this.networkSender = networkSender;
}
public int compareTo(Object o) {
if (o instanceof NetworkArtifactDeletedEvent) {
return 1;
} else if (o instanceof SkynetArtifactEventBase) {
return 1;
} else {
return -1;
}
}
}