- java.lang.Object
-
- org.omg.CORBA.ServiceInformation
-
- All Implemented Interfaces:
-
Serializable,IDLEntity
public final class ServiceInformation extends Object implements IDLEntity
CORBA模块中的IDL结构,用于存储有关ORB实现中可用的CORBA服务的信息,并从ORB.get_service_information获取。
-
-
Field Summary
Fields Modifier and Type Field 描述 ServiceDetail[]service_detailsServiceDetails数组,提供有关该服务的更多细节。int[]service_options表示服务选项的int数组。
-
构造方法摘要
构造方法 Constructor 描述 ServiceInformation()构造具有空的service_options和service_details的ServiceInformation对象。ServiceInformation(int[] __service_options, ServiceDetail[] __service_details)使用给定的service_options和service_details构造一个ServiceInformation对象。
-
-
-
字段详细信息
-
service_options
public int[] service_options
表示服务选项的int数组。
-
service_details
public ServiceDetail[] service_details
ServiceDetails数组,提供有关该服务的更多细节。
-
-
构造方法详细信息
-
ServiceInformation
public ServiceInformation()
构造具有空的service_options和service_details的ServiceInformation对象。
-
ServiceInformation
public ServiceInformation(int[] __service_options, ServiceDetail[] __service_details)使用给定的service_options和service_details构造一个ServiceInformation对象。- 参数
-
__service_options- 描述服务选项的int数组。 -
__service_details- 描述服务详细信息的ServiceDetails数组。
-
-