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
- Java Class com.visigenic.vbroker.services.ORBManager.AttributeSetHolder
- Source File com/visigenic/vbroker/services/ORBManager/AttributeSetHolder.java
- IDL Source File orbmanager.idl
- IDL Absolute Name ::ORBManager::AttributeSet
- Repository Identifier IDL:visigenic.com/ORBManager/AttributeSet:1.0
IDL definition:
#pragma prefix "visigenic.com/ORBManager"
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();
};
value-
AttributeSetHolder()
-
AttributeSetHolder(AttributeSet)
-
_read(InputStream)
-
_type()
-
_write(OutputStream)
-
value
public AttributeSet value
AttributeSetHolder
public AttributeSetHolder()
AttributeSetHolder
public AttributeSetHolder(AttributeSet value)
_read
public void _read(InputStream input)
_write
public void _write(OutputStream output)
_type
public TypeCode _type()
All Packages Class Hierarchy This Package Previous Next Index