mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Made the ThreadPoolExecutorFactory more configurable, but also with more sensible defaults.
- The queue for background jobs is unlimited - A smaller number of core threads is maintained - It is possible to set the threads' priority (default low) Added hasAspect() method to XPath functions. Various other cosmetic changes. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6146 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -24,7 +24,6 @@
|
||||
*/
|
||||
package org.alfresco.repo.domain;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
@@ -71,8 +70,6 @@ public interface Node
|
||||
|
||||
public Set<QName> getAspects();
|
||||
|
||||
// public Collection<ChildAssoc> getParentAssocs();
|
||||
|
||||
public Map<QName, PropertyValue> getProperties();
|
||||
|
||||
public DbAccessControlList getAccessControlList();
|
||||
|
@@ -153,19 +153,6 @@ public class NodeImpl extends LifecycleAdapter implements Node, Serializable
|
||||
return getUuid().hashCode();
|
||||
}
|
||||
|
||||
// @Override
|
||||
// public boolean onDelete(Session session) throws CallbackException
|
||||
// {
|
||||
// // check if there is an access control list
|
||||
// DbAccessControlList acl = getAccessControlList();
|
||||
// if (acl != null)
|
||||
// {
|
||||
// session.delete(acl);
|
||||
// }
|
||||
// return NO_VETO;
|
||||
// }
|
||||
//
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
|
Reference in New Issue
Block a user