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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? j2ee_1_4.xsd

?? 在tomcat下運(yùn)行的投票系統(tǒng)
?? XSD
?? 第 1 頁 / 共 4 頁
字號(hào):
	Deployment File in the same J2EE application unit.

	Alternatively, the value may be composed of a path name
	specifying a Deployment File containing the referenced
	message destination with the message-destination-name of the
	destination appended and separated from the path name by
	"#". The path name is relative to the Deployment File
	containing Deployment Component that is referencing the
	message destination.  This allows multiple message
	destinations with the same name to be uniquely identified.

      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string"/>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:complexType name="message-destination-refType">
    <xsd:annotation>
      <xsd:documentation>
	<![CDATA[

	  The message-destination-ref element contains a declaration
	  of Deployment Component's reference to a message destination
	  associated with a resource in Deployment Component's
	  environment. It consists of:

		  - an optional description
		  - the message destination reference name
		  - the message destination type
		  - a specification as to whether the
		    destination is used for
		    consuming or producing messages, or both
		  - a link to the message destination

	  Examples:

	  <message-destination-ref>
		  <message-destination-ref-name>jms/StockQueue
		  </message-destination-ref-name>
		  <message-destination-type>javax.jms.Queue
		  </message-destination-type>
		  <message-destination-usage>Consumes
		  </message-destination-usage>
		  <message-destination-link>CorporateStocks
		  </message-destination-link>
	  </message-destination-ref>

	  ]]>
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:element name="description"
		   type="j2ee:descriptionType"
		   minOccurs="0"
		   maxOccurs="unbounded"/>
      <xsd:element name="message-destination-ref-name"
		   type="j2ee:jndi-nameType">
	<xsd:annotation>
	  <xsd:documentation>

	    The message-destination-ref-name element specifies
	    the name of a message destination reference; its
	    value is the environment entry name used in
	    Deployment Component code.  The name is a JNDI name
	    relative to the java:comp/env context and must be
	    unique within an ejb-jar (for enterprise beans) or a
	    Deployment File (for others).

	  </xsd:documentation>
	</xsd:annotation>
      </xsd:element>
      <xsd:element name="message-destination-type"
		   type="j2ee:message-destination-typeType"/>
      <xsd:element name="message-destination-usage"
		   type="j2ee:message-destination-usageType"/>
      <xsd:element name="message-destination-link"
		   type="j2ee:message-destination-linkType"
		   minOccurs="0"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>

  </xsd:complexType>

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

  <xsd:complexType name="message-destination-typeType">
    <xsd:annotation>
      <xsd:documentation>
	<![CDATA[

	  The message-destination-typeType specifies the type of
	  the destination. The type is specified by the Java interface
	  expected to be implemented by the destination.

	  Example:

	    <message-destination-type>javax.jms.Queue
	    </message-destination-type>

	  ]]>
      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:fully-qualified-classType"/>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:complexType name="message-destination-usageType">
    <xsd:annotation>
      <xsd:documentation>

	The message-destination-usageType specifies the use of the
	message destination indicated by the reference.  The value
	indicates whether messages are consumed from the message
	destination, produced for the destination, or both.  The
	Assembler makes use of this information in linking producers
	of a destination with its consumers.

	The value of the message-destination-usage element must be
	one of the following:
	    Consumes
	    Produces
	    ConsumesProduces

      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
	<xsd:enumeration value="Consumes"/>
	<xsd:enumeration value="Produces"/>
	<xsd:enumeration value="ConsumesProduces"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:complexType name="message-destinationType">
    <xsd:annotation>
      <xsd:documentation>
	<![CDATA[

	  The message-destinationType specifies a message
	  destination. The logical destination described by this
	  element is mapped to a physical destination by the Deployer.

	  The message destination element contains:

		  - an optional description
		  - an optional display-name
		  - an optional icon
		  - a message destination name which must be unique
		    among message destination names within the same
		    Deployment File.

	  Example:

	  <message-destination>
		  <message-destination-name>CorporateStocks
		  </message-destination-name>
	  </message-destination>

	  ]]>
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:group ref="j2ee:descriptionGroup"/>
      <xsd:element name="message-destination-name"
		   type="j2ee:string">
	<xsd:annotation>
	  <xsd:documentation>

	    The message-destination-name element specifies a
	    name for a message destination.  This name must be
	    unique among the names of message destinations
	    within the Deployment File.

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

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

  <xsd:complexType name="param-valueType">
    <xsd:annotation>
      <xsd:documentation>

	This type is a general type that can be used to declare
	parameter/value lists.

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

    <xsd:sequence>
      <xsd:element name="description"
		   type="j2ee:descriptionType"
		   minOccurs="0"
		   maxOccurs="unbounded"/>
      <xsd:element name="param-name"
		   type="j2ee:string">
	<xsd:annotation>
	  <xsd:documentation>

	    The param-name element contains the name of a
	    parameter.

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

      <xsd:element name="param-value"
		   type="j2ee:xsdStringType">
	<xsd:annotation>
	  <xsd:documentation>

	    The param-value element contains the value of a
	    parameter.

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

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

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

	The elements that use this type designate either a relative
	path or an absolute path starting with a "/".

	In elements that specify a pathname to a file within the
	same Deployment File, relative filenames (i.e., those not
	starting with "/") are considered relative to the root of
	the Deployment File's namespace.  Absolute filenames (i.e.,
	those starting with "/") also specify names in the root of
	the Deployment File's namespace.  In general, relative names
	are preferred.  The exception is .war files where absolute
	names are preferred for consistency with the Servlet API.

      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string"/>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:complexType name="remoteType">
    <xsd:annotation>
      <xsd:documentation>
	<![CDATA[

	  The remote element contains the fully-qualified name
	  of the enterprise bean's remote interface.

	  Example:

	      <remote>com.wombat.empl.EmployeeService</remote>

	  ]]>
      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:fully-qualified-classType"/>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:complexType name="res-authType">
    <xsd:annotation>
      <xsd:documentation>

	The res-authType specifies whether the Deployment Component
	code signs on programmatically to the resource manager, or
	whether the Container will sign on to the resource manager
	on behalf of the Deployment Component. In the latter case,
	the Container uses information that is supplied by the
	Deployer.

	The value must be one of the two following:

	    Application
	    Container

      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
	<xsd:enumeration value="Application"/>
	<xsd:enumeration value="Container"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:complexType name="res-sharing-scopeType">
    <xsd:annotation>
      <xsd:documentation>

	The res-sharing-scope type specifies whether connections
	obtained through the given resource manager connection
	factory reference can be shared. The value, if specified,
	must be one of the two following:

	    Shareable
	    Unshareable

	The default value is Shareable.

      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:restriction base="j2ee:string">
	<xsd:enumeration value="Shareable"/>
	<xsd:enumeration value="Unshareable"/>
      </xsd:restriction>
    </xsd:simpleContent>
  </xsd:complexType>

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

  <xsd:complexType name="resource-env-refType">
    <xsd:annotation>
      <xsd:documentation>
	<![CDATA[

	  The resource-env-refType is used to define
	  resource-env-type elements.  It contains a declaration of a
	  Deployment Component's reference to an administered object
	  associated with a resource in the Deployment Component's
	  environment.  It consists of an optional description, the
	  resource environment reference name, and an indication of
	  the resource environment reference type expected by the
	  Deployment Component code.

	  Example:

	  <resource-env-ref>
	      <resource-env-ref-name>jms/StockQueue
	      </resource-env-ref-name>
	      <resource-env-ref-type>javax.jms.Queue
	      </resource-env-ref-type>
	  </resource-env-ref>

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

    <xsd:sequence>
      <xsd:element name="description"
		   type="j2ee:descriptionType"
		   minOccurs="0"
		   maxOccurs="unbounded"/>
      <xsd:element name="resource-env-ref-name"
		   type="j2ee:jndi-nameType">
	<xsd:annotation>
	  <xsd:documentation>

	    The resource-env-ref-name element specifies the name
	    of a resource environment reference; its value is
	    the environment entry name used in
	    the Deployment Component code.  The name is a JNDI
	    name relative to the java:comp/env context and must
	    be unique within a Deployment Component.

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

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

	    The resource-env-ref-type element specifies the type
	    of a resource environment reference.  It is the
	    fully qualified name of a Java language class or
	    interface.

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

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

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

  <xsd:complexType name="resource-refType">

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av网站免费在线| 黄色精品一二区| 久久亚洲私人国产精品va媚药| 99国产精品久久久久久久久久| 爽好久久久欧美精品| 国产精品久久三| 日韩精品一区二区三区视频 | 亚洲欧美一区二区久久| 欧美精品第一页| 99国产欧美另类久久久精品| 久草这里只有精品视频| 亚洲第一综合色| 国产精品久久久久久妇女6080 | 亚洲欧美电影院| 久久人人97超碰com| 欧美美女激情18p| 91免费国产在线| 成人免费毛片app| 国产乱码精品一品二品| 另类中文字幕网| 亚洲mv在线观看| 亚洲人成亚洲人成在线观看图片| 国产亚洲成年网址在线观看| 日韩亚洲电影在线| 91精品国产欧美一区二区18| 在线观看日韩高清av| 97久久精品人人澡人人爽| 国产福利一区二区三区视频在线 | 欧美午夜理伦三级在线观看| 成人网男人的天堂| 国产精品系列在线播放| 麻豆精品国产传媒mv男同| 日韩中文字幕不卡| 五月天精品一区二区三区| 亚洲综合激情网| 亚洲影院在线观看| 亚洲综合在线电影| 亚洲欧美日韩电影| 亚洲男人电影天堂| 一区二区三国产精华液| 怡红院av一区二区三区| 一区二区三区在线影院| 亚洲综合视频网| 亚洲国产精品尤物yw在线观看| 亚洲综合免费观看高清完整版在线 | 欧美日韩精品一区二区三区| 欧美视频在线一区| 在线不卡中文字幕播放| 日韩女优制服丝袜电影| 久久亚洲捆绑美女| 国产精品色呦呦| 亚洲摸摸操操av| 香蕉成人伊视频在线观看| 日韩vs国产vs欧美| 激情久久五月天| 国产成人精品综合在线观看 | 午夜久久久久久电影| 午夜成人免费视频| 久久疯狂做爰流白浆xx| 国产精品中文字幕日韩精品| av毛片久久久久**hd| 欧美偷拍一区二区| 欧美一区二区三区视频免费播放| 欧美精品一区二区不卡 | 国产网红主播福利一区二区| 国产精品久久毛片av大全日韩| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 欧美日韩不卡在线| 欧美大片国产精品| 国产精品久久久久影院| 一区二区三区中文在线观看| 秋霞国产午夜精品免费视频| 国产精品12区| 欧美午夜电影网| 精品国产不卡一区二区三区| 国产精品美日韩| 亚洲mv大片欧洲mv大片精品| 精品一区二区三区视频在线观看| 成人在线综合网站| 欧美日韩大陆一区二区| 国产亚洲va综合人人澡精品| 一区二区三区国产| 狠狠色丁香婷婷综合| 色老头久久综合| 日韩精品一区二区在线| 亚洲日本欧美天堂| 狠狠色丁香九九婷婷综合五月| 91视视频在线观看入口直接观看www | 成人免费不卡视频| 欧美精品久久99| 中文字幕在线一区免费| 日本不卡一区二区三区| 91在线观看污| 精品久久久久香蕉网| 亚洲激情自拍视频| 国产精品白丝jk黑袜喷水| 欧美精品在欧美一区二区少妇| 亚洲国产精品高清| 免费在线观看一区| 色菇凉天天综合网| 久久精品日韩一区二区三区| 亚洲成人免费在线| 99久久精品国产观看| 欧美一级淫片007| 一区二区三区不卡在线观看 | 国产九色sp调教91| 在线不卡欧美精品一区二区三区| 国产精品伦一区二区三级视频| 日韩精品欧美精品| 色哟哟在线观看一区二区三区| 欧美xfplay| 日本在线不卡视频| 欧美色视频在线观看| 亚洲同性同志一二三专区| 国产成人免费视频网站| 精品久久久久一区二区国产| 日韩二区三区四区| 在线观看一区二区视频| 日韩伦理av电影| 成人激情视频网站| 国产日韩v精品一区二区| 国产在线视频一区二区| 欧美刺激脚交jootjob| 琪琪一区二区三区| 51精品秘密在线观看| 午夜精品一区二区三区电影天堂| 99re这里只有精品6| 国产精品美女久久久久久久网站| 国产黄色成人av| 国产午夜精品久久久久久久| 国产精品综合一区二区三区| 精品福利在线导航| 狠狠色2019综合网| 久久久久亚洲蜜桃| 国产精品综合一区二区| 国产性做久久久久久| 国产成人综合在线观看| 欧美激情一区二区三区不卡| 成人在线视频一区二区| 国产精品伦理一区二区| 99久久99久久综合| 综合婷婷亚洲小说| 在线免费观看成人短视频| 亚洲午夜激情网站| 欧美日韩国产成人在线免费| 日韩电影免费在线| 精品av久久707| 成人一区二区三区| 亚洲猫色日本管| 91国产精品成人| 婷婷中文字幕一区三区| 欧美一区二区福利在线| 激情文学综合插| 中文字幕二三区不卡| 色伊人久久综合中文字幕| 亚洲国产另类精品专区| 日韩一区二区三区在线视频| 国产一区二区影院| 亚洲欧洲韩国日本视频| 欧美色图第一页| 狠狠色丁香久久婷婷综合_中| 欧美国产禁国产网站cc| 色婷婷av久久久久久久| 日本欧美一区二区在线观看| 精品国内片67194| 99综合影院在线| 亚洲国产va精品久久久不卡综合| 欧美一区二区性放荡片| 国产成人av在线影院| 一区二区三区精品久久久| 日韩一区国产二区欧美三区| 成人丝袜18视频在线观看| 亚洲永久精品大片| 欧美不卡一二三| 91麻豆国产自产在线观看| 视频精品一区二区| 国产欧美日韩综合| 欧美日韩中文一区| 国产高清在线精品| 一级精品视频在线观看宜春院 | 欧美不卡一二三| 99免费精品视频| 日本女人一区二区三区| 国产精品久久久久久妇女6080| 欧美日韩成人在线一区| 国产成人aaaa| 五月婷婷欧美视频| 国产精品高潮呻吟| 欧美成人精品二区三区99精品| 99re热这里只有精品免费视频| 蜜乳av一区二区| 一区二区久久久| 中文av一区二区| 精品日韩在线观看| 欧美吻胸吃奶大尺度电影| 成人爽a毛片一区二区免费| 美女在线视频一区| 亚洲午夜精品久久久久久久久| 中日韩免费视频中文字幕| 欧美成人猛片aaaaaaa|