mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Changes to transaction handling due to recent merge
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10872 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -166,7 +166,7 @@ public class AlfrescoCifsAuthenticator extends CifsAuthenticatorBase
|
|||||||
{
|
{
|
||||||
// Start a transaction
|
// Start a transaction
|
||||||
|
|
||||||
tx = getTransactionService().getUserTransaction( true);
|
tx = getTransactionService().getUserTransaction( false);
|
||||||
tx.begin();
|
tx.begin();
|
||||||
|
|
||||||
// Perform local MD4 password check
|
// Perform local MD4 password check
|
||||||
@@ -177,7 +177,7 @@ public class AlfrescoCifsAuthenticator extends CifsAuthenticatorBase
|
|||||||
{
|
{
|
||||||
// Start a transaction
|
// Start a transaction
|
||||||
|
|
||||||
tx = getTransactionService().getUserTransaction( true);
|
tx = getTransactionService().getUserTransaction( false);
|
||||||
tx.begin();
|
tx.begin();
|
||||||
|
|
||||||
// Perform passthru authentication password check
|
// Perform passthru authentication password check
|
||||||
|
@@ -290,8 +290,10 @@ public class EnterpriseCifsAuthenticator extends CifsAuthenticatorBase implement
|
|||||||
String mecListMIC = null;
|
String mecListMIC = null;
|
||||||
|
|
||||||
StringBuilder mic = new StringBuilder();
|
StringBuilder mic = new StringBuilder();
|
||||||
|
|
||||||
|
mic.append("cifs/");
|
||||||
mic.append( config.getServerName().toLowerCase());
|
mic.append( config.getServerName().toLowerCase());
|
||||||
mic.append("$@");
|
mic.append("@");
|
||||||
mic.append( m_krbRealm);
|
mic.append( m_krbRealm);
|
||||||
|
|
||||||
mecListMIC = mic.toString();
|
mecListMIC = mic.toString();
|
||||||
@@ -559,7 +561,7 @@ public class EnterpriseCifsAuthenticator extends CifsAuthenticatorBase implement
|
|||||||
{
|
{
|
||||||
// Start a transaction
|
// Start a transaction
|
||||||
|
|
||||||
tx = getTransactionService().getUserTransaction( true);
|
tx = getTransactionService().getUserTransaction( false);
|
||||||
tx.begin();
|
tx.begin();
|
||||||
|
|
||||||
// Process the hashed password session setup
|
// Process the hashed password session setup
|
||||||
@@ -716,7 +718,7 @@ public class EnterpriseCifsAuthenticator extends CifsAuthenticatorBase implement
|
|||||||
|
|
||||||
// Start a transaction
|
// Start a transaction
|
||||||
|
|
||||||
tx = getTransactionService().getUserTransaction( true);
|
tx = getTransactionService().getUserTransaction( false);
|
||||||
tx.begin();
|
tx.begin();
|
||||||
|
|
||||||
// Process the security blob
|
// Process the security blob
|
||||||
|
Reference in New Issue
Block a user