Example usage for com.liferay.portal.kernel.util PropsKeys DL_REPOSITORY_GUEST_PASSWORD

List of usage examples for com.liferay.portal.kernel.util PropsKeys DL_REPOSITORY_GUEST_PASSWORD

Introduction

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

Prototype

String DL_REPOSITORY_GUEST_PASSWORD

To view the source code for com.liferay.portal.kernel.util PropsKeys DL_REPOSITORY_GUEST_PASSWORD.

Click Source Link

Usage

From source file:com.liferay.document.library.repository.external.ExtRepositoryAdapter.java

License:Open Source License

private String _getPassword() {
    String login = PrincipalThreadLocal.getName();

    if (Validator.isNull(login) || _isDefaultUser(login)) {
        return PropsUtil.get(PropsKeys.DL_REPOSITORY_GUEST_PASSWORD);
    }// w w w .j a v a2 s .c  o  m

    return PrincipalThreadLocal.getPassword();
}

From source file:com.liferay.repository.external.ExtRepositoryAdapter.java

License:Open Source License

private String _getPassword() {
    String login = PrincipalThreadLocal.getName();

    if (Validator.isNull(login)) {
        return PropsUtil.get(PropsKeys.DL_REPOSITORY_GUEST_PASSWORD);
    }/*w  w  w .  j a  v  a2s . co m*/

    return PrincipalThreadLocal.getPassword();
}