亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? web-app_2_4.xsd

?? 在tomcat下運行的投票系統
?? XSD
?? 第 1 頁 / 共 3 頁
字號:
	<xsd:attribute name="id" type="xsd:ID"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="error-pageType">
    <xsd:annotation>
      <xsd:documentation>

	The error-pageType contains a mapping between an error code
	or exception type to the path of a resource in the web
	application.

	Used in: web-app

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>
      <xsd:choice>
	<xsd:element name="error-code"
		     type="j2ee:error-codeType"/>

	<xsd:element name="exception-type"
		     type="j2ee:fully-qualified-classType">
	  <xsd:annotation>
	    <xsd:documentation>

	      The exception-type contains a fully qualified class
	      name of a Java exception type.

	    </xsd:documentation>
	  </xsd:annotation>
	</xsd:element>
      </xsd:choice>

      <xsd:element name="location"
		   type="j2ee:war-pathType">
	<xsd:annotation>
	  <xsd:documentation>

	    The location element contains the location of the
	    resource in the web application relative to the root of
	    the web application. The value of the location must have
	    a leading `/'.

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="filter-mappingType">
    <xsd:annotation>
      <xsd:documentation>

	Declaration of the filter mappings in this web
	application is done by using filter-mappingType.
	The container uses the filter-mapping
	declarations to decide which filters to apply to a request,
	and in what order. The container matches the request URI to
	a Servlet in the normal way. To determine which filters to
	apply it matches filter-mapping declarations either on
	servlet-name, or on url-pattern for each filter-mapping
	element, depending on which style is used. The order in
	which filters are invoked is the order in which
	filter-mapping declarations that match a request URI for a
	servlet appear in the list of filter-mapping elements.The
	filter-name value must be the value of the filter-name
	sub-elements of one of the filter declarations in the
	deployment descriptor.

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>
      <xsd:element name="filter-name"
		   type="j2ee:filter-nameType"/>
      <xsd:choice>
	<xsd:element name="url-pattern"
		     type="j2ee:url-patternType"/>
	<xsd:element name="servlet-name"
		     type="j2ee:servlet-nameType"/>
      </xsd:choice>
      <xsd:element name="dispatcher"
		   type="j2ee:dispatcherType"
		   minOccurs="0" maxOccurs="4"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="filter-nameType">
    <xsd:annotation>
      <xsd:documentation>

	The logical name of the filter is declare
	by using filter-nameType. This name is used to map the
	filter.  Each filter name is unique within the web
	application.

	Used in: filter, filter-mapping

      </xsd:documentation>
    </xsd:annotation>

    <xsd:simpleContent>
      <xsd:extension base="j2ee:nonEmptyStringType"/>
    </xsd:simpleContent>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="filterType">
    <xsd:annotation>
      <xsd:documentation>

	The filterType is used to declare a filter in the web
	application. The filter is mapped to either a servlet or a
	URL pattern in the filter-mapping element, using the
	filter-name value to reference. Filters can access the
	initialization parameters declared in the deployment
	descriptor at runtime via the FilterConfig interface.

	Used in: web-app

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>
      <xsd:group ref="j2ee:descriptionGroup"/>
      <xsd:element name="filter-name"
		   type="j2ee:filter-nameType"/>
      <xsd:element name="filter-class"
		   type="j2ee:fully-qualified-classType">
	<xsd:annotation>
	  <xsd:documentation>

	    The fully qualified classname of the filter.

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>

      <xsd:element name="init-param"
		   type="j2ee:param-valueType"
		   minOccurs="0" maxOccurs="unbounded">
	<xsd:annotation>
	  <xsd:documentation>

	    The init-param element contains a name/value pair as
	    an initialization param of a servlet filter

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="form-login-configType">
    <xsd:annotation>
      <xsd:documentation>

	The form-login-configType specifies the login and error
	pages that should be used in form based login. If form based
	authentication is not used, these elements are ignored.

	Used in: login-config

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>

      <xsd:element name="form-login-page"
		   type="j2ee:war-pathType">
	<xsd:annotation>
	  <xsd:documentation>

	    The form-login-page element defines the location in the web
	    app where the page that can be used for login can be
	    found.  The path begins with a leading / and is interpreted
	    relative to the root of the WAR.

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>

      <xsd:element name="form-error-page"
		   type="j2ee:war-pathType">
	<xsd:annotation>
	  <xsd:documentation>

	    The form-error-page element defines the location in
	    the web app where the error page that is displayed
	    when login is not successful can be found.
	    The path begins with a leading / and is interpreted
	    relative to the root of the WAR.

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>

    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="http-methodType">
    <xsd:annotation>

      <xsd:documentation>

	The http-method contains an HTTP method recognized by the
	web-app, for example GET, POST, ...

      </xsd:documentation>
    </xsd:annotation>

    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
	<xsd:enumeration value="GET"/>
	<xsd:enumeration value="POST"/>
	<xsd:enumeration value="PUT"/>
	<xsd:enumeration value="DELETE"/>
	<xsd:enumeration value="HEAD"/>
	<xsd:enumeration value="OPTIONS"/>
	<xsd:enumeration value="TRACE"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="locale-encoding-mapping-listType">
    <xsd:annotation>
      <xsd:documentation>

	The locale-encoding-mapping-list contains one or more
	locale-encoding-mapping(s).

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>
      <xsd:element name="locale-encoding-mapping"
		   type="j2ee:locale-encoding-mappingType"
		   maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="locale-encoding-mappingType">
    <xsd:annotation>
      <xsd:documentation>

	The locale-encoding-mapping contains locale name and
	encoding name. The locale name must be either "Language-code",
	such as "ja", defined by ISO-639 or "Language-code_Country-code",
	such as "ja_JP".  "Country code" is defined by ISO-3166.

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>
      <xsd:element name="locale"
		   type="j2ee:localeType"/>
      <xsd:element name="encoding"
		   type="j2ee:encodingType"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:simpleType name="localeType">
    <xsd:annotation>
      <xsd:documentation>

	The localeType defines valid locale defined by ISO-639-1
	and ISO-3166.

      </xsd:documentation>
    </xsd:annotation>

    <xsd:restriction base="xsd:string">
      <xsd:pattern value="[a-z]{2}(_|-)?([\p{L}\-\p{Nd}]{2})?"/>
    </xsd:restriction>
  </xsd:simpleType>

<!-- **************************************************** -->

  <xsd:complexType name="login-configType">
    <xsd:annotation>
      <xsd:documentation>

	The login-configType is used to configure the authentication
	method that should be used, the realm name that should be
	used for this application, and the attributes that are
	needed by the form login mechanism.

	Used in: web-app

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>
      <xsd:element name="auth-method"
		   type="j2ee:auth-methodType"
		   minOccurs="0"/>
      <xsd:element name="realm-name"
		   type="j2ee:string" minOccurs="0">
	<xsd:annotation>
	  <xsd:documentation>

	    The realm name element specifies the realm name to
	    use in HTTP Basic authorization.

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>
      <xsd:element name="form-login-config"
		   type="j2ee:form-login-configType"
		   minOccurs="0"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="mime-mappingType">
    <xsd:annotation>
      <xsd:documentation>

	The mime-mappingType defines a mapping between an extension
	and a mime type.

	Used in: web-app

      </xsd:documentation>
    </xsd:annotation>

    <xsd:sequence>
      <xsd:annotation>
	<xsd:documentation>

	  The extension element contains a string describing an
	  extension. example: "txt"

	</xsd:documentation>
      </xsd:annotation>

      <xsd:element name="extension"
		   type="j2ee:string"/>
      <xsd:element name="mime-type"
		   type="j2ee:mime-typeType"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="mime-typeType">
    <xsd:annotation>
      <xsd:documentation>

	The mime-typeType is used to indicate a defined mime type.

	Example:
	"text/plain"

	Used in: mime-mapping

      </xsd:documentation>
    </xsd:annotation>

    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
          <xsd:pattern value="[^\p{Cc}^\s]+/[^\p{Cc}^\s]+"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="nonEmptyStringType">
    <xsd:annotation>
      <xsd:documentation>
	This type defines a string which contains at least one
	character.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
	<xsd:minLength value="1"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

<!-- **************************************************** -->

  <xsd:complexType name="security-constraintType">
    <xsd:annotation>
      <xsd:documentation>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
1024精品合集| 国产精品日韩成人| 欧美三级乱人伦电影| av中文字幕亚洲| 波多野结衣中文字幕一区二区三区| 国产精品亚洲成人| 成人午夜电影网站| aaa亚洲精品| 色综合亚洲欧洲| 91久久奴性调教| 欧美日韩一区二区三区视频| 91黄视频在线| 5月丁香婷婷综合| 精品成人一区二区| 国产日产欧美一区二区视频| 欧美高清在线一区二区| 中文字幕一区二区三区在线不卡| 综合中文字幕亚洲| 午夜免费久久看| 久久精品理论片| 成人av在线观| 欧美精品在欧美一区二区少妇| 欧美电视剧在线观看完整版| 国产女人18毛片水真多成人如厕| 国产精品精品国产色婷婷| 一区二区三区欧美激情| 日本欧美肥老太交大片| 国产精品自拍在线| 欧洲一区二区三区免费视频| 日韩精品一区二区三区四区视频| 国产三级精品视频| 亚洲狠狠爱一区二区三区| 久久国产剧场电影| aaa国产一区| 欧美va亚洲va香蕉在线| 亚洲桃色在线一区| 美日韩黄色大片| 色婷婷综合在线| 欧美精品一区二区在线观看| 亚洲精品高清视频在线观看| 国产一区二区三区视频在线播放| 色婷婷激情久久| 久久欧美中文字幕| 日韩有码一区二区三区| 91麻豆国产精品久久| 日韩片之四级片| 午夜一区二区三区视频| 不卡的av电影| 久久久久久久网| 日韩电影网1区2区| 在线观看欧美日本| 中文字幕中文字幕在线一区 | 国产精品性做久久久久久| 欧美性受xxxx| 亚洲美女免费视频| 丰满亚洲少妇av| 欧美va亚洲va香蕉在线| 亚洲动漫第一页| 色综合天天综合网天天狠天天| 久久久久九九视频| 精品一区二区三区欧美| 在线播放亚洲一区| 天天色天天操综合| 欧美午夜精品免费| 亚洲特黄一级片| 99视频热这里只有精品免费| 欧美极品xxx| 成人激情动漫在线观看| 国产精品嫩草久久久久| 成人精品gif动图一区| 中文欧美字幕免费| 成人免费毛片aaaaa**| 国产亚洲1区2区3区| 国产成人激情av| 国产精品国产三级国产a| 极品少妇xxxx精品少妇偷拍| 欧美不卡一区二区三区| 国产精品一区一区三区| 国产欧美一区二区精品性| 国产福利精品一区二区| 国产视频911| 成人午夜视频网站| 1区2区3区国产精品| 一本色道久久综合狠狠躁的推荐 | 欧美日韩综合一区| 亚洲一区二区三区四区的| 色婷婷激情久久| 五月综合激情网| 欧美草草影院在线视频| 国产成+人+日韩+欧美+亚洲| 国产精品毛片久久久久久久| 色呦呦国产精品| 免费成人在线视频观看| 久久影院视频免费| 97国产一区二区| 亚洲成人资源网| 精品久久久久久久久久久久包黑料 | 精品国产91乱码一区二区三区| 激情五月播播久久久精品| 国产精品三级av| 欧美日韩你懂的| 韩国av一区二区三区四区| 国产精品国产自产拍高清av王其| 色婷婷av一区二区| 麻豆91免费观看| 国产精品久久久久久久久久免费看 | 成人一区二区三区视频| 一区二区三区精品| 久久夜色精品国产欧美乱极品| 成人免费毛片a| 人人爽香蕉精品| 亚洲日本电影在线| 精品国精品国产尤物美女| 北岛玲一区二区三区四区| 日韩电影一区二区三区四区| 欧美国产激情一区二区三区蜜月| 欧美日韩中文一区| 国产91精品免费| 日韩电影在线观看一区| 国产精品福利在线播放| 欧美一区二区三区视频免费 | 色婷婷亚洲精品| 国产精品自产自拍| 午夜精品国产更新| 国产精品久久久久久久久晋中 | 国产成人午夜片在线观看高清观看| 亚洲男人的天堂在线观看| 精品乱码亚洲一区二区不卡| 在线精品视频小说1| 丁香婷婷深情五月亚洲| 九九九精品视频| 天堂成人免费av电影一区| 成人免费在线视频观看| 久久欧美中文字幕| 日韩欧美亚洲一区二区| 欧美日韩成人综合| 色婷婷精品大在线视频| av资源网一区| 99视频在线观看一区三区| 国产传媒欧美日韩成人| 精品无码三级在线观看视频| 日本不卡中文字幕| 三级不卡在线观看| 日韩精品1区2区3区| 视频在线观看一区二区三区| 亚洲一区二区三区四区五区中文| 亚洲三级在线免费观看| 亚洲视频一区在线观看| 亚洲视频一二区| 亚洲色图在线看| 亚洲欧美日韩在线不卡| 亚洲欧美日韩国产一区二区三区| 最新热久久免费视频| 综合分类小说区另类春色亚洲小说欧美 | proumb性欧美在线观看| 国产精品18久久久久| 国产在线国偷精品产拍免费yy| 免费精品视频在线| 久久成人综合网| 国产毛片精品国产一区二区三区| 国产精品一区专区| aa级大片欧美| 欧美日韩亚洲综合在线| 69久久99精品久久久久婷婷| 日韩手机在线导航| 久久久久国产精品厨房| 国产精品传媒入口麻豆| 一区二区三区高清在线| 香蕉加勒比综合久久| 久久精品国产免费| 国产成人精品亚洲午夜麻豆| av男人天堂一区| 欧美午夜免费电影| 欧美成人激情免费网| 国产精品毛片久久久久久久| 一区二区三区免费看视频| 琪琪久久久久日韩精品| 国产高清在线观看免费不卡| 99国产精品视频免费观看| 精品视频全国免费看| 精品国产不卡一区二区三区| 国产精品传媒在线| 日本中文一区二区三区| 国产精品一品二品| 色欧美乱欧美15图片| 日韩女优视频免费观看| 国产精品欧美久久久久无广告 | 日韩一区二区中文字幕| 国产清纯美女被跳蛋高潮一区二区久久w | 欧美一区二区女人| 国产精品午夜电影| 丝袜诱惑亚洲看片| 成人性生交大片免费看视频在线 | 成人丝袜18视频在线观看| 欧美亚日韩国产aⅴ精品中极品| 精品国产一区二区三区忘忧草| 中文字幕在线观看不卡| 美女久久久精品| 色中色一区二区| 国产亚洲欧美中文|