Package org.apache.pluto.portlet.admin.model

Examples of org.apache.pluto.portlet.admin.model.PageRegistryXao


  public boolean pageExists(String pageName) {
    final String METHOD_NAME = "pageExists(pageName)";
    boolean exists = true;
    try {
      PageRegistryXao xao = new PageRegistryXao();
      exists = xao.pageExists(pageName);
    } catch (Exception e) {
      logError(METHOD_NAME, e);
      throw new PlutoAdminException(e);
    }
    return exists;
View Full Code Here


  public boolean pageExists(String pageName) {
    final String METHOD_NAME = "pageExists(pageName)";
    boolean exists = true;
    try {
      PageRegistryXao xao = new PageRegistryXao();
      exists = xao.pageExists(pageName);
    } catch (Exception e) {
      logError(METHOD_NAME, e);
      throw new PlutoAdminException(e);
    }
    return exists;
View Full Code Here

  public boolean pageExists(String pageName) {
    final String METHOD_NAME = "pageExists(pageName)";
    boolean exists = true;
    try {
      PageRegistryXao xao = new PageRegistryXao();
      exists = xao.pageExists(pageName);
    } catch (Exception e) {
      logError(METHOD_NAME, e);
      throw new PlutoAdminException(e);
    }
    return exists;
View Full Code Here

TOP

Related Classes of org.apache.pluto.portlet.admin.model.PageRegistryXao

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.