Compare commits

...

2 Commits

Author SHA1 Message Date
Maksym Sheverda
4599928bcd TESB-28895 Route node is missing in project setting 2020-04-22 21:51:10 +03:00
Maksym Sheverda
d3e990de68 TESB-28895 Route node is missing in project setting 2020-04-22 15:17:17 +03:00
2 changed files with 8 additions and 0 deletions

View File

@@ -529,6 +529,11 @@ public class ERepositoryObjectType extends DynaEnum<ERepositoryObjectType> {
*/
public final static ERepositoryObjectType PROCESS_ROUTE = ERepositoryObjectType.valueOf("ROUTE"); //$NON-NLS-1$
/**
* <font color="red">This value may be <b>null</b> in some licenses, <b>should add NPE check</b></font>
*/
public final static ERepositoryObjectType PROCESS_ROUTE_DESIGN = ERepositoryObjectType.valueOf("ROUTE_DESIGNS");
/**
* <font color="red">This value may be <b>null</b> in some licenses, <b>should add NPE check</b></font>
*/

View File

@@ -33,6 +33,9 @@ public abstract class AbstractRepositoryNodeRepositorySettingTester implements I
if (contentType.equals(getType())) {
return true;
}
if (contentType.equals(ERepositoryObjectType.PROCESS_ROUTE_DESIGN)) {
return true;
}
}
}
return false;