Package org.exoplatform.portal.mop.management.exportimport

Examples of org.exoplatform.portal.mop.management.exportimport.NavigationImportTask


                    PageNavigation navigation = marshaller.unmarshal(zis);
                    navigation.setOwnerType(siteKey.getTypeName());
                    navigation.setOwnerId(siteKey.getName());

                    // Add import task to run later
                    mopImport.navigationTask = new NavigationImportTask(navigation, siteKey, navigationService,
                            descriptionService, dataStorage);
                }
            }

            resultHandler.completed(NoResultModel.INSTANCE);
View Full Code Here


                    PageNavigation navigation = marshaller.unmarshal(zis);
                    navigation.setOwnerType(siteKey.getTypeName());
                    navigation.setOwnerId(siteKey.getName());

                    // Add import task to run later
                    mopImport.navigationTask = new NavigationImportTask(navigation, siteKey, navigationService,
                            descriptionService, dataStorage);
                }
            }

            resultHandler.completed(NoResultModel.INSTANCE);
View Full Code Here

               PageNavigation navigation = marshaller.unmarshal(zis);
               navigation.setOwnerType(siteKey.getTypeName());
               navigation.setOwnerId(siteKey.getName());

               // Add import task to run later
               mopImport.navigationTask = new NavigationImportTask(navigation, siteKey, navigationService, descriptionService, dataStorage);
            }
         }

         resultHandler.completed(NoResultModel.INSTANCE);
      }
View Full Code Here

                    PageNavigation navigation = marshaller.unmarshal(zis);
                    navigation.setOwnerType(siteKey.getTypeName());
                    navigation.setOwnerId(siteKey.getName());

                    // Add import task to run later
                    mopImport.navigationTask = new NavigationImportTask(navigation, siteKey, navigationService,
                            descriptionService, dataStorage);
                }
            }

            resultHandler.completed(NoResultModel.INSTANCE);
View Full Code Here

        if (mopTemplate.pageNavigation != null) {
            PageNavigation pageNavigation = applyPattern(mopTemplate.pageNavigation, owner);
            pageNavigation.setOwnerType(siteKey.getTypeName());
            pageNavigation.setOwnerId(siteKey.getName());
            mopImport.navigationTask = new NavigationImportTask(pageNavigation, siteKey, svc.navigationService,
                    svc.descriptionService, svc.dataStorage);
        }

    }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.mop.management.exportimport.NavigationImportTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.