Package com.dotmarketing.portlets.structure.model

Examples of com.dotmarketing.portlets.structure.model.SimpleStructureURLMap


    } else {
      dc.setSQL("SELECT inode, url_map_pattern from structure where url_map_pattern is not null and url_map_pattern <> '' order by url_map_pattern desc");
    }
    List<Map<String, String>> rows = dc.loadResults();
    for (Map<String, String> row : rows) {
      res.add(new SimpleStructureURLMap(row.get("inode"), row.get("url_map_pattern")));
    }
    return res;
  }
View Full Code Here

TOP

Related Classes of com.dotmarketing.portlets.structure.model.SimpleStructureURLMap

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.