04-05-2011 05:50 AM
void deleteUserInfoByUserIdAndKey(String userId, String key) {
throw new UnsupportedOperationException()
}
void deleteIdentityInfo(IdentityInfoEntity identityInfo) {
throw new UnsupportedOperationException()
}
IdentityInfoEntity findUserAccountByUserIdAndKey(String userId, String userPassword, String key) {
throw new UnsupportedOperationException()
}
void setUserInfo(String userId, String userPassword, String type, String key, String value, String accountPassword, Map<String, String> accountDetails) {
throw new UnsupportedOperationException()
}
byte[] encryptPassword(String accountPassword, String userPassword) {
throw new UnsupportedOperationException()
}
String decryptPassword(byte[] storedPassword, String userPassword) {
throw new UnsupportedOperationException()
}
IdentityInfoEntity findUserInfoByUserIdAndKey(String userId, String key) {
throw new UnsupportedOperationException()
}
List<String> findUserInfoKeysByUserIdAndType(String userId, String type) {
throw new UnsupportedOperationException()
}
04-06-2011 03:48 AM
04-06-2011 05:39 AM
These methods are mainly because we are currently building out the new Explorer UI, like
- storing random user information
- storing user accounts (gmail account, alfresco account)
- storing password encrypted in database.
But I agree with you, these methods do nt need to be implemented by spring security, so throwing an unsupported exception is perfect.
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.