}
public int compareTo (Object peer_) throws ClassCastException {
if (!(peer_ instanceof GetMaxChildrenRequest)) {
throw new ClassCastException("Comparing different types of records.");
}
GetMaxChildrenRequest peer = (GetMaxChildrenRequest) peer_;
int ret = 0;
ret = path.compareTo(peer.path);
if (ret != 0) return ret;
return ret;
}