/*
* JFolder, Copyright 2001-2006 Gary Steinmetz
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jfolder.services.governor;
//base classes
//project specific classes
//other classes
/*public class GovernorServiceKey {
public final static int UNIQUE_KEY = 1;
public int id = 0;
public GovernorServiceKey() {
}
public GovernorServiceKey(int inId) {
this.id = inId;
}
public boolean equals(Object inObject) {
boolean outValue = false;
if ((inObject != null) && (inObject instanceof GovernorServiceKey)
&& (((GovernorServiceKey)inObject).id == this.id)) {
outValue = true;
}
return outValue;
}
public int hashCode() {
return this.id;
}
public String toString() {
return String.valueOf(this.id);
}
}*/
|