Hi,
We are using the following code to get the published status of the CI.
Site s = Site.findByName("XXXXX");
SiteRef sRef = new SiteRef(s);
DeploymentClient dc = new DeploymentClient(sRef);
publishedFlag =(dc.getPublishedStatus(new ManagedObjectVCMRef(strVCMId).getObjectId()) == PublishedStatus.PUBLISHED);
Do we have any other way to get the published status of the CI without using the DeploymentClient?
Thanks, Raju