[DS-707] Boolean instantiations

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5496 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Graham Triggs
2010-10-20 20:29:49 +00:00
parent c28da30c35
commit e47d96205a
6 changed files with 10 additions and 10 deletions

View File

@@ -208,7 +208,7 @@ public class ShibAuthentication implements AuthenticationMethod
// the person exists, just return ok // the person exists, just return ok
context.setCurrentUser(eperson); context.setCurrentUser(eperson);
request.getSession().setAttribute("shib.authenticated", request.getSession().setAttribute("shib.authenticated",
new Boolean("true")); Boolean.TRUE);
} }
return AuthenticationMethod.SUCCESS; return AuthenticationMethod.SUCCESS;

View File

@@ -471,14 +471,14 @@ public class X509Authentication implements AuthenticationMethod
if (email.substring(email.length() - emailDomain.length()).equals( if (email.substring(email.length() - emailDomain.length()).equals(
emailDomain)) emailDomain))
{ {
session.setAttribute("x509Auth", new Boolean(true)); session.setAttribute("x509Auth", Boolean.TRUE);
} }
} }
else else
{ {
// No configured email domain to verify. Just flag // No configured email domain to verify. Just flag
// as authenticated so special groups are granted. // as authenticated so special groups are granted.
session.setAttribute("x509Auth", new Boolean(true)); session.setAttribute("x509Auth", Boolean.TRUE);
} }
} }

View File

@@ -139,7 +139,7 @@ public class ChoiceAuthorityManager
log.warn("Skipping invalid ChoiceAuthority configuration property: "+key+": does not have schema.element.qualifier"); log.warn("Skipping invalid ChoiceAuthority configuration property: "+key+": does not have schema.element.qualifier");
continue property; continue property;
} }
closed.put(fkey, new Boolean(ConfigurationManager.getBooleanProperty(key))); closed.put(fkey, Boolean.valueOf(ConfigurationManager.getBooleanProperty(key)));
} }
else else
log.error("Illegal configuration property: "+key); log.error("Illegal configuration property: "+key);

View File

@@ -126,7 +126,7 @@ public class PluginManager
{ {
String key = REUSABLE_PREFIX+implClass.getName(); String key = REUSABLE_PREFIX+implClass.getName();
boolean reusable = ConfigurationManager.getBooleanProperty(key, true); boolean reusable = ConfigurationManager.getBooleanProperty(key, true);
cacheMeCache.put(implClass, new Boolean(reusable)); cacheMeCache.put(implClass, Boolean.valueOf(reusable));
return reusable; return reusable;
} }
} }

View File

@@ -163,7 +163,7 @@ public class InitialQuestionsStep extends AbstractProcessingStep
// Remember that we've removed a thesis in the session // Remember that we've removed a thesis in the session
request.getSession().setAttribute("removed_thesis", request.getSession().setAttribute("removed_thesis",
new Boolean(true)); Boolean.TRUE);
return STATUS_THESIS_REJECTED; // since theses are disabled, throw return STATUS_THESIS_REJECTED; // since theses are disabled, throw
// an error! // an error!
@@ -231,9 +231,9 @@ public class InitialQuestionsStep extends AbstractProcessingStep
if (willRemoveTitles || willRemoveDate || willRemoveFiles) if (willRemoveTitles || willRemoveDate || willRemoveFiles)
{ {
//save what we will need to prune to request (for UI to process) //save what we will need to prune to request (for UI to process)
request.setAttribute("will.remove.titles", new Boolean(willRemoveTitles)); request.setAttribute("will.remove.titles", Boolean.valueOf(willRemoveTitles));
request.setAttribute("will.remove.date", new Boolean(willRemoveDate)); request.setAttribute("will.remove.date", Boolean.valueOf(willRemoveDate));
request.setAttribute("will.remove.files", new Boolean(willRemoveFiles)); request.setAttribute("will.remove.files", Boolean.valueOf(willRemoveFiles));
return STATUS_VERIFY_PRUNE; // we will need to do pruning! return STATUS_VERIFY_PRUNE; // we will need to do pruning!
} }

View File

@@ -212,7 +212,7 @@ public class WorkflowManager
{ {
// make a hash table entry with item ID for no notify // make a hash table entry with item ID for no notify
// notify code checks no notify hash for item id // notify code checks no notify hash for item id
noEMail.put(new Integer(wsi.getItem().getID()), new Boolean(true)); noEMail.put(new Integer(wsi.getItem().getID()), Boolean.TRUE);
return start(c, wsi); return start(c, wsi);
} }