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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? web-app_2_4.xsd

?? 在tomcat下運(yùn)行的投票系統(tǒng)
?? XSD
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
	The security-constraintType is used to associate
	security constraints with one or more web resource
	collections

	Used in: web-app

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

    <xsd:sequence>
      <xsd:element name="display-name"
		   type="j2ee:display-nameType"
		   minOccurs="0"
		   maxOccurs="unbounded"/>
      <xsd:element name="web-resource-collection"
		   type="j2ee:web-resource-collectionType"
		   maxOccurs="unbounded"/>
      <xsd:element name="auth-constraint"
		   type="j2ee:auth-constraintType"
		   minOccurs="0"/>
      <xsd:element name="user-data-constraint"
		   type="j2ee:user-data-constraintType"
		   minOccurs="0"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

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

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

	The servlet-mappingType defines a mapping between a
	servlet and a url pattern.

	Used in: web-app

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

    <xsd:sequence>
      <xsd:element name="servlet-name"
		   type="j2ee:servlet-nameType"/>
      <xsd:element name="url-pattern"
		   type="j2ee:url-patternType"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

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

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

	The servlet-name element contains the canonical name of the
	servlet. Each servlet name is unique within the web
	application.

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

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

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

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

	The servletType is used to declare a servlet.
	It contains the declarative data of a
	servlet. If a jsp-file is specified and the load-on-startup
	element is present, then the JSP should be precompiled and
	loaded.

	Used in: web-app

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

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

	      The servlet-class element contains the fully
	      qualified class name of the servlet.

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

	<xsd:element name="jsp-file"
		     type="j2ee:jsp-fileType"/>

      </xsd:choice>

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

	    The load-on-startup element indicates that this
	    servlet should be loaded (instantiated and have
	    its init() called) on the startup of the web
	    application. The optional contents of these
	    element must be an integer indicating the order in
	    which the servlet should be loaded. If the value
	    is a negative integer, or the element is not
	    present, the container is free to load the servlet
	    whenever it chooses. If the value is a positive
	    integer or 0, the container must load and
	    initialize the servlet as the application is
	    deployed. The container must guarantee that
	    servlets marked with lower integers are loaded
	    before servlets marked with higher integers. The
	    container may choose the order of loading of
	    servlets with the same load-on-start-up value.

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>
      <xsd:element name="run-as"
		   type="j2ee:run-asType"
		   minOccurs="0"/>
      <xsd:element name="security-role-ref"
		   type="j2ee:security-role-refType"
		   minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

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

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

	The session-configType defines the session parameters
	for this web application.

	Used in: web-app

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

    <xsd:sequence>
      <xsd:element name="session-timeout"
		   type="j2ee:xsdIntegerType"
		   minOccurs="0">
	<xsd:annotation>
	  <xsd:documentation>

	    The session-timeout element defines the default
	    session timeout interval for all sessions created
	    in this web application. The specified timeout
	    must be expressed in a whole number of minutes.
	    If the timeout is 0 or less, the container ensures
	    the default behaviour of sessions is never to time
	    out. If this element is not specified, the container
	    must set its default timeout period.

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

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

  <xsd:complexType name="transport-guaranteeType">
    <xsd:annotation>
      <xsd:documentation>

	The transport-guaranteeType specifies that the communication
	between client and server should be NONE, INTEGRAL, or
	CONFIDENTIAL. NONE means that the application does not
	require any transport guarantees. A value of INTEGRAL means
	that the application requires that the data sent between the
	client and server be sent in such a way that it can't be
	changed in transit. CONFIDENTIAL means that the application
	requires that the data be transmitted in a fashion that
	prevents other entities from observing the contents of the
	transmission. In most cases, the presence of the INTEGRAL or
	CONFIDENTIAL flag will indicate that the use of SSL is
	required.

	Used in: user-data-constraint

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

    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
	<xsd:enumeration value="NONE"/>
	<xsd:enumeration value="INTEGRAL"/>
	<xsd:enumeration value="CONFIDENTIAL"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

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

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

	The user-data-constraintType is used to indicate how
	data communicated between the client and container should be
	protected.

	Used in: security-constraint

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

    <xsd:sequence>
      <xsd:element name="description"
		   type="j2ee:descriptionType"
		   minOccurs="0"
		   maxOccurs="unbounded"/>
      <xsd:element name="transport-guarantee"
		   type="j2ee:transport-guaranteeType"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

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

  <xsd:complexType name="war-pathType">
    <xsd:annotation>
      <xsd:documentation>

	The elements that use this type designate a path starting
	with a "/" and interpreted relative to the root of a WAR
	file.

      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
	<xsd:pattern value="/.*"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:simpleType name="web-app-versionType">
    <xsd:annotation>
      <xsd:documentation>

	This type contains the recognized versions of
	web-application supported. It is used to designate the
	version of the web application.

      </xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base="xsd:token">
      <xsd:enumeration value="2.4"/>
    </xsd:restriction>
  </xsd:simpleType>

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

  <xsd:complexType name="web-appType">

    <xsd:choice minOccurs="0" maxOccurs="unbounded">
      <xsd:group ref="j2ee:descriptionGroup"/>
      <xsd:element name="distributable"
		   type="j2ee:emptyType"/>
      <xsd:element name="context-param"
		   type="j2ee:param-valueType">

	<xsd:annotation>
	  <xsd:documentation>

	    The context-param element contains the declaration
	    of a web application's servlet context
	    initialization parameters.

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

      <xsd:element name="filter"
		   type="j2ee:filterType"/>
      <xsd:element name="filter-mapping"
		   type="j2ee:filter-mappingType"/>
      <xsd:element name="listener"
		   type="j2ee:listenerType"/>
      <xsd:element name="servlet"
		   type="j2ee:servletType"/>
      <xsd:element name="servlet-mapping"
		   type="j2ee:servlet-mappingType"/>
      <xsd:element name="session-config"
		   type="j2ee:session-configType"/>
      <xsd:element name="mime-mapping"
		   type="j2ee:mime-mappingType"/>
      <xsd:element name="welcome-file-list"
		   type="j2ee:welcome-file-listType"/>
      <xsd:element name="error-page"
		   type="j2ee:error-pageType"/>
      <xsd:element name="jsp-config"
		   type="j2ee:jsp-configType"/>
      <xsd:element name="security-constraint"
		   type="j2ee:security-constraintType"/>
      <xsd:element name="login-config"
		   type="j2ee:login-configType"/>
      <xsd:element name="security-role"
		   type="j2ee:security-roleType"/>
      <xsd:group ref="j2ee:jndiEnvironmentRefsGroup"/>
      <xsd:element name="message-destination"
		   type="j2ee:message-destinationType"/>
      <xsd:element name="locale-encoding-mapping-list"
		   type="j2ee:locale-encoding-mapping-listType"/>
    </xsd:choice>

    <xsd:attribute name="version"
		   type="j2ee:web-app-versionType"
		   use="required"/>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

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

  <xsd:complexType name="web-resource-collectionType">
    <xsd:annotation>
      <xsd:documentation>

	The web-resource-collectionType is used to identify a subset
	of the resources and HTTP methods on those resources within
	a web application to which a security constraint applies. If
	no HTTP methods are specified, then the security constraint
	applies to all HTTP methods.

	Used in: security-constraint

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

    <xsd:sequence>
      <xsd:element name="web-resource-name"
		   type="j2ee:string">
	<xsd:annotation>
	  <xsd:documentation>

	    The web-resource-name contains the name of this web
	    resource collection.

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>
      <xsd:element name="description"
		   type="j2ee:descriptionType"
		   minOccurs="0"
		   maxOccurs="unbounded"/>
      <xsd:element name="url-pattern"
		   type="j2ee:url-patternType"
		   maxOccurs="unbounded"/>
      <xsd:element name="http-method"
		   type="j2ee:http-methodType"
		   minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
  </xsd:complexType>

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

  <xsd:complexType name="welcome-file-listType">
    <xsd:annotation>
      <xsd:documentation>

	The welcome-file-list contains an ordered list of welcome
	files elements.

	Used in: web-app

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

    <xsd:sequence>
      <xsd:element name="welcome-file"
		   type="xsd:string"
		   maxOccurs="unbounded">
	<xsd:annotation>
	  <xsd:documentation>

	    The welcome-file element contains file name to use
	    as a default welcome file, such as index.html

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

</xsd:schema>

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产偷v国产偷v亚洲高清| 肉色丝袜一区二区| 国产精品女人毛片| 久久久久久久av麻豆果冻| 久久综合一区二区| 久久综合久久综合九色| 精品国产3级a| 久久精品视频免费观看| 国产精品欧美一级免费| 国产精品国产a| 亚洲精品免费在线| 亚洲18色成人| 免费观看一级欧美片| 狠狠色狠狠色综合日日91app| 久久不见久久见中文字幕免费| 久久99久久久久| 国产最新精品精品你懂的| 国产sm精品调教视频网站| 不卡一卡二卡三乱码免费网站| 成av人片一区二区| 欧美午夜精品一区二区三区| 91精品在线麻豆| 久久久久国产精品麻豆| 国产精品少妇自拍| 综合精品久久久| 丝袜美腿一区二区三区| 韩国v欧美v亚洲v日本v| 成人激情综合网站| 在线观看亚洲专区| 精品国产三级a在线观看| 欧美激情一区二区三区全黄 | 亚洲成人你懂的| 日本不卡123| 国产福利一区二区三区视频在线| a4yy欧美一区二区三区| 欧美日韩夫妻久久| 国产亚洲精品7777| 一区二区三区四区激情| 日本人妖一区二区| 国产sm精品调教视频网站| 在线精品视频一区二区三四| 日韩欧美国产综合一区 | 日韩精品91亚洲二区在线观看 | 9191成人精品久久| 欧美国产丝袜视频| 午夜婷婷国产麻豆精品| 国产一区美女在线| 在线一区二区三区四区| 日韩欧美国产午夜精品| 亚洲男人电影天堂| 精品一区二区三区视频| 色婷婷国产精品综合在线观看| 日韩欧美激情四射| 夜夜爽夜夜爽精品视频| 国产一区二区三区免费观看| 日本韩国精品在线| 精品国产不卡一区二区三区| 亚洲国产欧美在线| 成人午夜电影小说| 欧美一区2区视频在线观看| 国产精品久久久久久久久快鸭| 日韩在线一二三区| 99久久精品国产精品久久| 精品日韩欧美在线| 亚洲成a人在线观看| 成人午夜伦理影院| 精品国产百合女同互慰| 午夜激情综合网| 色婷婷久久综合| 久久亚区不卡日本| 日韩精品一二三四| 91国在线观看| 国产精品久久福利| 国产高清久久久久| 日韩欧美一级二级三级久久久| 一区二区三区视频在线看| 成人理论电影网| 欧美精品一区二区三区视频| 无码av免费一区二区三区试看 | 欧美色中文字幕| 国产精品视频线看| 国产精品亚洲一区二区三区妖精| 欧美一区二区三区性视频| 亚洲午夜久久久久久久久电影网 | 激情久久五月天| 欧美日韩久久久一区| 亚洲精品视频在线看| 懂色av中文字幕一区二区三区| 精品成人a区在线观看| 强制捆绑调教一区二区| 91精品国产品国语在线不卡| 亚洲一区二区欧美| 欧美在线观看禁18| 一区二区三区欧美日韩| 日本久久电影网| 亚洲久本草在线中文字幕| 不卡视频在线观看| 亚洲视频在线一区观看| 成人免费高清在线| 欧美激情一区三区| 成人精品小蝌蚪| 国产精品麻豆视频| 成人av手机在线观看| 国产精品久久综合| 91在线视频免费观看| 综合av第一页| 在线视频你懂得一区| 亚洲国产精品视频| 67194成人在线观看| 美国精品在线观看| 精品国产乱子伦一区| 国产综合色产在线精品| 久久久91精品国产一区二区精品| 国产成人午夜片在线观看高清观看| 久久人人爽爽爽人久久久| 国产精品18久久久久久vr| 国产日产欧美一区| 99精品欧美一区二区三区小说| 中文字幕亚洲一区二区av在线 | 亚洲美女视频一区| 欧美午夜精品久久久| 天堂影院一区二区| 日韩一级免费观看| 国产精品88888| 国产精品久久久久aaaa樱花| 欧洲精品视频在线观看| 日本成人中文字幕| 精品国产露脸精彩对白| 成人小视频免费在线观看| 亚洲欧美另类久久久精品2019| 欧美猛男超大videosgay| 狠狠色丁香九九婷婷综合五月| 欧美国产日韩a欧美在线观看| 色偷偷成人一区二区三区91| 丝袜美腿高跟呻吟高潮一区| 久久午夜免费电影| 色综合久久综合中文综合网| 日韩福利电影在线观看| 国产欧美精品一区| 欧美性xxxxx极品少妇| 国内不卡的二区三区中文字幕| 亚洲日本一区二区| 91.成人天堂一区| 国产·精品毛片| 亚洲综合视频在线观看| 精品久久久久av影院| 波多野结衣中文字幕一区| 午夜久久久久久| 国产欧美日韩卡一| 欧美人牲a欧美精品| 成人在线综合网| 日本va欧美va精品发布| 中文字幕不卡的av| 欧美一区二区在线播放| 成人中文字幕在线| 欧美a一区二区| 亚洲乱码一区二区三区在线观看| 日韩一区二区在线观看视频播放| 床上的激情91.| 美国欧美日韩国产在线播放| 亚洲人成亚洲人成在线观看图片| 欧美一区二区三区视频免费 | www国产精品av| 欧美日韩中文另类| 福利一区在线观看| 美腿丝袜亚洲综合| 亚洲香肠在线观看| 中文字幕av不卡| 欧美成人aa大片| 久久精品国产久精国产爱| 亚洲一区二区在线观看视频| 国产精品视频免费| 久久综合久久综合久久| 欧美老女人在线| 91成人在线精品| 成人高清免费观看| 国产一区免费电影| 免费在线看成人av| 亚洲国产aⅴ天堂久久| 18成人在线观看| 久久久91精品国产一区二区精品| 日韩一区二区三区在线视频| 欧美色图天堂网| 91麻豆精东视频| 丰满放荡岳乱妇91ww| 国产自产视频一区二区三区| 日av在线不卡| 天使萌一区二区三区免费观看| 一区二区三区不卡视频| 亚洲欧洲av一区二区三区久久| 久久综合九色综合欧美亚洲| 欧美成人精精品一区二区频| 欧美一区二区三区四区五区| 欧美高清视频一二三区| 欧美在线免费播放| 欧美色欧美亚洲另类二区| 日本久久一区二区| 在线看一区二区| 色综合中文字幕国产 | 欧美va在线播放|