CORBA 2.6 Administration Guide
entities
Lists all the entities in the current database.
entities
cfgmgt traverses the entire database in hash order. The entities are not listed in alphabetical order.
entity
Either adds a new entity to the current database or, for an existing entity in the current database, does one
of the following:
Displays all of its keys and their values●
Changes the values of one or more existing keys●
Adds one or more new keys●
entity entity-name [ "{" {key value}... "}" ]
entity-name
is the name of an entity.
If entity-name does not exist, entity adds it to the current database, along with any key-value
pairs.
If entity-name does exist, but no key-value pairs are specified, entity displays all of the keys
of entity-name and their values.
key
is the name of a key. The list of key-value pairs must be enclosed in braces.
If key already belongs to entity-name, entity sets the value of key to value.
If key does not already belong to entity-name, entity adds key to entity-name and sets the
value of key to value.
value
is the value to which key is to be set.
Note: Each key-value pair must be on a separate line. (If necessary, you can continue a long line by
ending it with a backslash (\) and continuing on the next physical line), for example:
entity Entity1 {
key1 value1
key2 value2
key3 value3 }