Example usage for com.liferay.portal.kernel.util HashUtil hash

List of usage examples for com.liferay.portal.kernel.util HashUtil hash

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util HashUtil hash.

Prototype

public static int hash(int seed, Object value) 

Source Link

Usage

From source file:at.graz.meduni.bibbox.liferay.portlet.model.impl.ApplicationInstanceCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, applicationInstanceId);
}

From source file:at.graz.meduni.bibbox.liferay.portlet.model.impl.ApplicationInstanceContainerCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, applicationInstanceContainerId);
}

From source file:at.graz.meduni.bibbox.liferay.portlet.model.impl.ApplicationInstancePortCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, applicationInstancePortId);
}

From source file:at.graz.meduni.bibbox.liferay.portlet.model.impl.ApplicationInstanceStatusCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, applicationInstanceStatusId);
}

From source file:blade.servicebuilder.model.impl.FooCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, fooId);
}

From source file:ca.efendi.datafeeds.model.impl.CJProductCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, productId);
}

From source file:ca.efendi.datafeeds.model.impl.FtpSubscriptionCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, ftpSubscriptionId);
}

From source file:com.bemis.portal.carriers.model.impl.CarrierCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, carrierId);
}

From source file:com.bemis.portal.customer.model.impl.CustomerLocationCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, customerLocationId);
}

From source file:com.bemis.portal.data.sync.report.model.impl.DataSyncReportCacheModel.java

License:Open Source License

@Override
public int hashCode() {
    return HashUtil.hash(0, dataSyncReportPK);
}