All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.visigenic.vbroker.services.ORBManager.AttributeSetHolder

java.lang.Object
   |
   +----com.visigenic.vbroker.services.ORBManager.AttributeSetHolder

public final class AttributeSetHolder
extends Object
implements Streamable

IDL definition:
interface AttributeSet {
exception InvalidAttributeId {
};
exception InvalidAttributeType {
};
exception InvalidAttributeValue {
};
exception AttributeReadOnly {
};
exception ShutdownTimeout {
};
any get_attribute(
in string attribute_id
)
raises(
::ORBManager::AttributeSet::InvalidAttributeId
);
void set_attribute(
in string attribute_id,
in any attribute_value
)
raises(
::ORBManager::AttributeSet::InvalidAttributeId,
::ORBManager::AttributeSet::InvalidAttributeType,
::ORBManager::AttributeSet::InvalidAttributeValue,
::ORBManager::AttributeSet::AttributeReadOnly
);
struct Attribute {
string id;
any value;
boolean is_readonly;
};
typedef sequence<::ORBManager::AttributeSet::Attribute> AttributeSeq;
::ORBManager::AttributeSet::AttributeSeq get_all_attributes();
};


Variable Index

 o value

Constructor Index

 o AttributeSetHolder()
 o AttributeSetHolder(AttributeSet)

Method Index

 o _read(InputStream)
 o _type()
 o _write(OutputStream)

Variables

 o value
 public AttributeSet value

Constructors

 o AttributeSetHolder
 public AttributeSetHolder()
 o AttributeSetHolder
 public AttributeSetHolder(AttributeSet value)

Methods

 o _read
 public void _read(InputStream input)
 o _write
 public void _write(OutputStream output)
 o _type
 public TypeCode _type()

All Packages  Class Hierarchy  This Package  Previous  Next  Index