Guidelines for Using Keywords

The jbld program reads the service definitions from a text file. To use the keywords, observe the guidelines in the following table.

Table 2-2 Guidelines for Using Keywords

Guideline Example
Each keyword must be followed by an equal sign (=) and the value. Correct: type=string

Incorrect: type

Only one keyword is allowed on each line. Correct: type=string

Incorrect: type=string access=out

Any lines not having an equal sign (=) are ignored. Correct: type=string

Incorrect: type string

Certain keywords only accept a well-defined set of values. The keyword access accepts only these values: in, out, inout, noaccess
The input file can contain multiple service definitions. service=INQUIRY

<service keywords and values>

service=DEPOSIT

<service keywords and values>

service=WITHDRAWAL

<service keywords and values>

service=TRANSFER

<service keywords and values>

Each service definition consists of multiple keywords and values. service=DEPOSIT

export=true

inbuf=VIEW32

outbuf=VIEW32

inview=INVIEW

outview=OUTVIEW