所有类
org.omg.CORBA
类 ServiceDetail
java.lang.Object
org.omg.CORBA.ServiceDetail
- 所有已实现的接口:
- Serializable, IDLEntity
-
public final class ServiceDetail
- extends Object
- implements IDLEntity
表示 ORB 服务的对象:其 service_detail_type
字段包含 ORB 服务的类型,其 service_detail
字段包含 ORB 服务的描述。
构造方法摘要 |
ServiceDetail() 使用 0 作为 ORB 服务的类型并使用空描述构造一个 ServiceDetail 对象。 |
ServiceDetail(int service_detail_type, byte[] service_detail) 使用给定 ORB 服务类型和给定描述构造一个 ServiceDetail 对象。 |
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
service_detail_type
public int service_detail_type
-
此
ServiceDetail
对象表示的 ORB 服务的类型。
service_detail
public byte[] service_detail
-
描述此
ServiceDetail
对象所表示的 ORB 服务的数据。
ServiceDetail
public ServiceDetail()
-
使用 0 作为 ORB 服务的类型并使用空描述构造一个
ServiceDetail
对象。
ServiceDetail
public ServiceDetail(int service_detail_type,
byte[] service_detail)
-
使用给定 ORB 服务类型和给定描述构造一个
ServiceDetail
对象。
- 参数:
service_detail_type
- 指定 ORB 服务类型的 int
值
service_detail
- 描述 ORB 服务的 byte
数组
所有类