config.asn
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:1k
- ---
- --- Definitions for abstract configuration interfaces
- ---
- NCBI-Config DEFINITIONS ::=
- BEGIN
- EXPORTS PluginConfigCache, PluginConfigValues, KeyValue;
- ---
- --- PluginConfigValues defines a saved, named set of configuration values.
- ---
- --- It can group other sets of values by referring to their ids (data|include).
- --- It can default its values to one other with the same type by referring to its
- --- style (refer-to-style).
- PluginConfigCache ::= SEQUENCE {
- data SET OF PluginConfigValues
- }
- PluginConfigValues ::= SEQUENCE {
- id PluginConfigID,
- refer-to-style VisibleString OPTIONAL,
- data CHOICE {
- keyvals SET OF KeyValue, -- each with a unique key.
- include SET OF PluginConfigID -- each with a unique type.
- }
- }
- PluginConfigID ::= SEQUENCE {
- type VisibleString,
- style VisibleString
- }
- KeyValue ::= SEQUENCE {
- key VisibleString,
- val CHOICE {
- str VisibleString,
- keyvals SET OF KeyValue -- each with a unique key.
- }
- }
- END