Skip to content

Commit

Permalink
Fix to SAK-2223: Should allow UserDirectoryProvider to indicate if it…
Browse files Browse the repository at this point in the history
… is to be consulted before or after Sakai's internal tables

git-svn-id: https://source.sakaiproject.org/svn/trunk/sakai/providers@2904 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
zqian committed Oct 25, 2005
1 parent b651046 commit df6a3a6
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,14 @@ public boolean updateUserAfterAuthentication()
public void destroyAuthentication()
{
}

/**
* {@inheritDoc}
*/
public boolean authenticateWithProviderFirst(String id)
{
return false;
}

} // SampleUserDirectoryProvider

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -586,5 +586,13 @@ public int getOperationTimeout() {
public void setOperationTimeout(int operationTimeout) {
this.operationTimeout = operationTimeout;
}

/**
* {@inheritDoc}
*/
public boolean authenticateWithProviderFirst(String id)
{
return false;
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,14 @@ private char[] getPw()

} // SakaiCallbackHandler

/**
* {@inheritDoc}
*/
public boolean authenticateWithProviderFirst(String id)
{
return false;
}

} // KerberosUserDirectoryProvider


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,13 @@ public void setBasePath(String basePath) {

//helper class for storing user data in the hashtable cache


/**
* {@inheritDoc}
*/
public boolean authenticateWithProviderFirst(String id)
{
return false;
}
}


Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,14 @@ public void destroyAuthentication()
{
}

/**
* {@inheritDoc}
*/
public boolean authenticateWithProviderFirst(String id)
{
return false;
}

} // SampleUserDirectoryProvider


Expand Down

0 comments on commit df6a3a6

Please sign in to comment.