Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<ObjectClassDescription> ::=
          <LPAREN> <SP> <numericoid> <parameters> <extensions> <WSP> RPAREN

// Each parameters should not be seen more than once
<parameters>  ::=
          [( <SP> "NAME" <SP> <qdescrs> ]
          [| <SP> "DESC" <SP> <qdstring> ]
          [| <SP> "OBSOLETE" ]
          [| <SP> "SUP" <SP> <oids> ]
          [| <SP> ( "ABSTRACT" | "STRUCTURAL" | "AUXILIARY" ) ]
          [| <SP> "MUST" <SP> <oids ]<oids>
          [| <SP> "MAY" <SP> <oids> ]
          <extensions> <WSP> RPAREN)+

with the following rules :

...