All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mobicents.slee.resources.isup.ra.ISUPActivityHandle Maven / Gradle / Ivy

There is a newer version: 8.1.13
Show newest version
/**
 * 
 */
package org.mobicents.slee.resources.isup.ra;

import javax.slee.resource.ActivityHandle;

/**
 * @author baranowb
 *
 */
public class ISUPActivityHandle implements ActivityHandle {

	private long key;

	ISUPActivityHandle(long key) {
		super();
		this.key = key;
	}

	/* (non-Javadoc)
	 * @see java.lang.Object#hashCode()
	 */
	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = (int)(prime * result + key);
		return result;
	}

	/* (non-Javadoc)
	 * @see java.lang.Object#equals(java.lang.Object)
	 */
	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		ISUPActivityHandle other = (ISUPActivityHandle) obj;
		if (key !=other.key)
			return false;
		
		return true;
	}

	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy