This content has been marked as final.
Show 2 replies
-
1. Re: Is it possible to create a page in gateIn using public API
anishantony Sep 20, 2013 8:30 AM (in response to anishantony)I created a page by using following way
Portal portal = PortalRequest.getInstance().getPortal();
Page newpage = portal.createPage(new PageId("classic", "mypage"));
newpage.setAccessPermission(Permission.everyone());
newpage.setDisplayName("My New Page");
But now my problem is how to add portlet into that page?
-
2. Re: Is it possible to create a page in gateIn using public API
nscavell Sep 23, 2013 4:35 PM (in response to anishantony)No, not at the moment. We only support 'page meta data' and not the page layout which would include your applications (portlets). First we wanted to reduce scope so we could focus on full navigation API and second we wanted to use newly developed internal services like NavigationService and PageService; however, development has not been done to support the data you want internally.