@Override
 public Element getWorkspaceData() {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   return pd.getWorkspaceData();
 }
 public Element getLogicalArchitectureData() {
   PersistentDomain pd =
       new PersistentDomain(
           this.defineDomainService,
           this.moduleService,
           this.appliedRuleService,
           this.exceptionService);
   pd.setParseData(DomainElement.LOGICAL);
   return pd.getWorkspaceData();
 }