indexing description: "Constant class" license: "MIT license (see ../license.txt)" author: "Beat Strasser " date: "$Date$" revision: "$Revision$" deferred class P2P_CONSTANTS feature -- Documents namespace_jxta: XM_NAMESPACE is -- JXTAs XML namespace once create Result.make ("jxta", "http://jxta.org") ensure Result_set: Result /= Void end namespace_empty: XM_NAMESPACE is -- Default (empty) XML namespace once create Result.make_default ensure Result_set: Result /= Void end feature -- Advertisements standard_module_compatibility: STRING is "vamPeer/0.1" standard_module_package_uri: STRING is "http://origo.ethz.ch/vamPeer/" standard_module_provider: STRING is "ethz.ch" standard_module_code_prefix: STRING is "vamPeer/" feature -- Platform World_peergroup_name: STRING is "WorldPeerGroup" Net_peergroup_name: STRING is "NetPeerGroup" feature -- Module Class IDs frozen peer_group_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: peer group once create Result.make_from_urn (well_known_id_prefix + "0000000105") ensure Result_valid: Result /= Void and Result.is_valid end frozen resolver_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: resolver service once create Result.make_from_urn (well_known_id_prefix + "0000000205") ensure Result_valid: Result /= Void and Result.is_valid end frozen discovery_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: discovery service once create Result.make_from_urn (well_known_id_prefix + "0000000305") ensure Result_valid: Result /= Void and Result.is_valid end frozen pipe_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: pipe service once create Result.make_from_urn (well_known_id_prefix + "0000000405") ensure Result_valid: Result /= Void and Result.is_valid end frozen membership_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: membership service once create Result.make_from_urn (well_known_id_prefix + "0000000505") ensure Result_valid: Result /= Void and Result.is_valid end frozen rendezvous_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: rendezvous service once create Result.make_from_urn (well_known_id_prefix + "0000000605") ensure Result_valid: Result /= Void and Result.is_valid end frozen peer_info_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: peer info service once create Result.make_from_urn (well_known_id_prefix + "0000000705") ensure Result_valid: Result /= Void and Result.is_valid end frozen endpoint_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: endpoint service once create Result.make_from_urn (well_known_id_prefix + "0000000805") ensure Result_valid: Result /= Void and Result.is_valid end frozen transport_tcp_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: tcp transport once create Result.make_from_urn (well_known_id_prefix + "0000000905") ensure Result_valid: Result /= Void and Result.is_valid end frozen transport_http_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: http transport once create Result.make_from_urn (well_known_id_prefix + "0000000A05") ensure Result_valid: Result /= Void and Result.is_valid end frozen transport_router_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: router transport once create Result.make_from_urn (well_known_id_prefix + "0000000B05") ensure Result_valid: Result /= Void and Result.is_valid end frozen application_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: application once create Result.make_from_urn (well_known_id_prefix + "0000000C05") ensure Result_valid: Result /= Void and Result.is_valid end frozen transport_tls_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: tls transport once create Result.make_from_urn (well_known_id_prefix + "0000000D05") ensure Result_valid: Result /= Void and Result.is_valid end frozen proxy_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: proxy service once create Result.make_from_urn (well_known_id_prefix + "0000000E05") ensure Result_valid: Result /= Void and Result.is_valid end frozen transport_relay_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: relay protocol once create Result.make_from_urn (well_known_id_prefix + "0000000F05") ensure Result_valid: Result /= Void and Result.is_valid end frozen access_mcid: P2P_MODULE_CLASS_ID is -- Well known module class identifier: access service once create Result.make_from_urn (well_known_id_prefix + "0000001005") ensure Result_valid: Result /= Void and Result.is_valid end feature -- Module specification IDs frozen ref_platform_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: platform once create Result.make_from_urn (well_known_id_prefix + "000000010106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_net_peergroup_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: net peer group once create Result.make_from_urn (well_known_id_prefix + "000000010206") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_resolver_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard resolver service once create Result.make_from_urn (well_known_id_prefix + "000000020106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_discovery_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard discovery service once create Result.make_from_urn (well_known_id_prefix + "000000030106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_pipe_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard pipe service once create Result.make_from_urn (well_known_id_prefix + "000000040106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_membership_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard membership service once create Result.make_from_urn (well_known_id_prefix + "000000050106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_rendezvous_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard rendezvous service once create Result.make_from_urn (well_known_id_prefix + "000000060106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_peer_info_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard peer info service once create Result.make_from_urn (well_known_id_prefix + "000000070106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_endpoint_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard endpoint service once create Result.make_from_urn (well_known_id_prefix + "000000080106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_transport_tcp_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard tcp transport once create Result.make_from_urn (well_known_id_prefix + "000000090106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_transport_http_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard http transport once create Result.make_from_urn (well_known_id_prefix + "0000000A0106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_transport_router_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard router transport once create Result.make_from_urn (well_known_id_prefix + "0000000B0106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_transport_tls_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard tls transport once create Result.make_from_urn (well_known_id_prefix + "0000000D0106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_proxy_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard proxy once create Result.make_from_urn (well_known_id_prefix + "0000000E0106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_transport_relay_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard relay transport once create Result.make_from_urn (well_known_id_prefix + "0000000F0106") ensure Result_valid: Result /= Void and Result.is_valid end frozen ref_access_msid: P2P_MODULE_SPECIFICATION_ID is -- Well known module specification identifier: standard access service once create Result.make_from_urn (well_known_id_prefix + "000000100106") ensure Result_valid: Result /= Void and Result.is_valid end feature {NONE} -- Implementation Well_known_id_prefix: STRING is "urn:jxta:uuid-DeadBeefDeafBabaFeedBabe" end