Package com.hlcl.rql.as

Examples of com.hlcl.rql.as.MultiLink


    CmsClient client = new CmsClient(logonGuid);
    Project project = client.getProject(sessionKey, projectGuid);

    Page currentPg = project.getPageById("4711");

    MultiLink multiLink = currentPg.getMultiLink("multiLinkTemplateElementName");
    List multiLinks = currentPg.getMultiLinks();
    boolean includeReferences = false;
    List<MultiLink> multiLinks2 = currentPg.getMultiLinks(includeReferences);

    List<MultiLink> linksToThisPage = currentPg.getMultiLinksToThisPage();
    MultiLink mainMultiLink = currentPg.getMainMultiLink();
  }
View Full Code Here

TOP

Related Classes of com.hlcl.rql.as.MultiLink

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.