How to publish list of pages by java(Servlet or services) ?
Let's assume I have list of path like, /content/us/en/a, /content/us/en/b, /content/us/en/c etc. and I want to publish these content from java
What I have ?
List<String> allPaths = allPagesPathWhichNeedToPublish();and want to publish all pages which is in allPaths list. What java steps I need to follow to publish path/pages one by one.