Example usage for com.liferay.portal.kernel.util Digester MD5

List of usage examples for com.liferay.portal.kernel.util Digester MD5

Introduction

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

Prototype

String MD5

To view the source code for com.liferay.portal.kernel.util Digester MD5.

Click Source Link

Usage

From source file:com.liferay.google.drive.repository.model.GoogleDriveFileVersion.java

License:Open Source License

@Override
public String getExtRepositoryModelKey() {
    StringBundler sb = new StringBundler(5);

    sb.append(_extRepositoryFileEntryKey);
    sb.append(StringPool.COLON);//  www  . j ava2  s . com
    sb.append(DigesterUtil.digestHex(Digester.MD5, _revision.getId()));
    sb.append(StringPool.COLON);
    sb.append(_version);

    return sb.toString();
}