1 17 package org.alfresco.repo.security.authentication.ntlm; 18 19 import java.util.Date ; 20 21 import net.sf.acegisecurity.UserDetails; 22 import net.sf.acegisecurity.providers.dao.UsernameNotFoundException; 23 24 import org.alfresco.error.AlfrescoRuntimeException; 25 import org.alfresco.repo.security.authentication.AuthenticationException; 26 import org.alfresco.repo.security.authentication.MutableAuthenticationDao; 27 import org.alfresco.service.cmr.repository.NodeService; 28 import org.alfresco.service.cmr.repository.StoreRef; 29 import org.springframework.dao.DataAccessException; 30 31 38 public class NullMutableAuthenticationDao implements MutableAuthenticationDao 39 { 40 42 private NodeService m_nodeService; 43 44 49 public void setNodeService(NodeService nodeService) 50 { 51 m_nodeService = nodeService; 52 } 53 54 61 public void createUser(String userName, char[] rawPassword) throws AuthenticationException 62 { 63 throw new AlfrescoRuntimeException("Not implemented"); 64 65 } 67 68 75 public void updateUser(String userName, char[] rawPassword) throws AuthenticationException 76 { 77 throw new AlfrescoRuntimeException("Not implemented"); 78 79 } 81 82 88 public void deleteUser(String userName) throws AuthenticationException 89 { 90 throw new AlfrescoRuntimeException("Not implemented"); 91 92 } 94 95 101 public boolean userExists(String userName) 102 { 103 return true; 104 } 105 106 112 public void setEnabled(String userName, boolean enabled) 113 { 114 throw new AlfrescoRuntimeException("Not implemented"); 115 116 } 118 119 125 public boolean getEnabled(String userName) 126 { 127 throw new AlfrescoRuntimeException("Not implemented"); 128 129 } 131 132 138 public void setAccountExpires(String userName, boolean expires) 139 { 140 throw new AlfrescoRuntimeException("Not implemented"); 141 142 } 144 145 151 152 public boolean getAccountExpires(String userName) 153 { 154 throw new AlfrescoRuntimeException("Not implemented"); 155 156 } 158 159 165 public boolean getAccountHasExpired(String userName) 166 { 167 throw new AlfrescoRuntimeException("Not implemented"); 168 169 } 171 172 178 public void setCredentialsExpire(String userName, boolean expires) 179 { 180 throw new AlfrescoRuntimeException("Not implemented"); 181 182 } 184 185 191 public boolean getCredentialsExpire(String userName) 192 { 193 throw new AlfrescoRuntimeException("Not implemented"); 194 195 } 197 198 204 public boolean getCredentialsHaveExpired(String userName) 205 { 206 throw new AlfrescoRuntimeException("Not implemented"); 207 208 } 210 211 217 public void setLocked(String userName, boolean locked) 218 { 219 throw new AlfrescoRuntimeException("Not implemented"); 220 221 } 223 224 230 public boolean getAccountlocked(String userName) 231 { 232 throw new AlfrescoRuntimeException("Not implemented"); 233 234 } 236 237 243 public void setAccountExpiryDate(String userName, Date exipryDate) 244 { 245 throw new AlfrescoRuntimeException("Not implemented"); 246 247 } 249 250 256 public Date getAccountExpiryDate(String userName) 257 { 258 throw new AlfrescoRuntimeException("Not implemented"); 259 260 } 262 263 269 public void setCredentialsExpiryDate(String userName, Date exipryDate) 270 { 271 throw new AlfrescoRuntimeException("Not implemented"); 272 273 } 275 276 282 public Date getCredentialsExpiryDate(String userName) 283 { 284 throw new AlfrescoRuntimeException("Not implemented"); 285 286 } 288 289 295 public String getMD4HashedPassword(String userName) 296 { 297 throw new AlfrescoRuntimeException("Not implemented"); 298 299 } 301 302 307 public boolean getUserNamesAreCaseSensitive() 308 { 309 throw new AlfrescoRuntimeException("Not implemented"); 310 311 } 313 314 322 public UserDetails loadUserByUsername(String arg0) throws UsernameNotFoundException, DataAccessException 323 { 324 throw new AlfrescoRuntimeException("Not implemented"); 325 326 } 328 329 335 public Object getSalt(UserDetails user) 336 { 337 throw new AlfrescoRuntimeException("Not implemented"); 338 339 } 341 } 342 | Popular Tags |