MOB-1073: Fix build. Use dictionaryService.getAspect() rather than dictionaryService.getType() to look up aspects

- Also improved Boolean logic so that it's possible to switch on archiving via an aspect (as suggested by Derek)
- M2ClassDefinition.getArchive() now returns true, false or null
- false takes precedence and is the ultimate default
- fixed JIBX classpath


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16022 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2009-09-01 16:10:49 +00:00
parent a949dcad97
commit 415c90c971
5 changed files with 50 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2005-2007 Alfresco Software Limited.
* Copyright (C) 2005-2009 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -18,7 +18,7 @@
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* FLOSS exception. You should have received a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
@@ -374,16 +374,10 @@ import org.alfresco.service.namespace.QName;
return (m2Class instanceof M2Aspect);
}
/**
* @return Returns the archive flag, which defaults to <tt>true</tt> for aspects and <tt>false</tt> for other classes
/* (non-Javadoc)
* @see org.alfresco.service.cmr.dictionary.ClassDefinition#getArchive()
*/
public boolean isArchive()
{
Boolean isArchive = getArchive();
return isArchive == null ? isAspect() : isArchive.booleanValue();
}
protected Boolean getArchive()
public Boolean getArchive()
{
return archive == null ? inheritedArchive : archive;
}
@@ -597,9 +591,20 @@ import org.alfresco.service.namespace.QName;
}
// check archive/inheritedArchive
if (isArchive() != classDef.isArchive())
if (archive == null)
{
isUpdatedIncrementally = true;
if (classDef.getArchive() != null)
{
isUpdatedIncrementally = true;
}
}
else
{
Boolean classArchive = classDef.getArchive();
if (classArchive == null || classArchive.booleanValue() != archive.booleanValue())
{
isUpdatedIncrementally = true;
}
}
String modelDiffType;