1:<?xml version="1.0" encoding="UTF-8"?>
   2:
   3:<portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" version="1.0" 
   4:         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   5:xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
   6:  <portlet>
   7:    <description lang="EN">query_portlet</description>
   8:    <portlet-name>query_portlet</portlet-name>
   9:    <display-name lang="EN">query_portlet</display-name>
  10:    <portlet-class>QueryPortlet</portlet-class>
  11:    <init-param>
  12:      <name>view_url</name>
  13:      <value>/templates/view.jsp</value>
  14:    </init-param>
  15:    <init-param>
  16:      <name>edit_url</name>
  17:      <value>/templates/edit.jsp</value>
  18:    </init-param>
  19:    <init-param>
  20:      <name>help_url</name>
  21:      <value>/templates/help.jsp</value>
  22:    </init-param>
  23:    <expiration-cache>-1</expiration-cache>
  24:    <supports>
  25:      <mime-type>text/html</mime-type>
  26:      <portlet-mode>edit</portlet-mode>
  27:      <portlet-mode>view</portlet-mode>
  28:      <portlet-mode>help</portlet-mode>
  29:    </supports>
  30:    <supported-locale>en</supported-locale>
  31:    <portlet-info>
  32:      <title>Query Portlet</title>
  33:      <short-title>Query Portlet</short-title>
  34:    </portlet-info>
  35:    <portlet-preferences>
  36:       <preference>
  37:          <name>title</name>
  38:          <value>Employees</value>
  39:       </preference>    
  40:       <preference>
  41:          <name>sql</name>
  42:          <value>SELECT * FROM emp</value>
  43:       </preference>
  44:       <preferences-validator>QueryPreferencesValidator</preferences-validator> 
  45:     </portlet-preferences>
  46:  </portlet>
  47:</portlet-app>
  48:
  49: