package org.zstack.utils.hash; /** * Created with IntelliJ IDEA. * User: frank * Time: 10:06 PM * To change this template use File | Settings | File Templates. */ public interface HashFunction { int hash(Object obj); }