List of usage examples for com.liferay.portal.kernel.util PropsKeys DL_REPOSITORY_GUEST_PASSWORD
String DL_REPOSITORY_GUEST_PASSWORD
To view the source code for com.liferay.portal.kernel.util PropsKeys DL_REPOSITORY_GUEST_PASSWORD.
Click Source Link
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(); }