Skip to content

Commit 1a287fd

Browse files
authored
Linkify README headings
1 parent fb64aae commit 1a287fd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This repository contains samples to show different scenarios of how you might us
44
These will not work out of the box, as you will require valid CICS resources eg CICS Programs and Libraries for them to use.
55
Each sample is contained within a web application which can be packaged as a WAR in a CICS bundle and deployed to CICS using the [CICS bundle Maven plugin](https://github.com/IBM/cics-bundle-maven) or the [CICS bundle Gradle plugin](https://github.com/IBM/cics-bundle-gradle). If you're just interested in the Java code, this can be found in *src/main/java*.
66

7-
Full documentation on Java development using the JCICSX API can be found in the [IBM Knowledge Centre](https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/applications/developing/java/jcicsx-api.html).
7+
Full documentation on Java development using the JCICSX API can be found in the [IBM Knowledge Center](https://www.ibm.com/support/knowledgecenter/SSGMCP_5.6.0/applications/developing/java/jcicsx-api.html).
88

99

1010
## Prerequisites
@@ -15,23 +15,23 @@ Full documentation on Java development using the JCICSX API can be found in the
1515

1616

1717

18-
## append-char-container-sample
18+
## [append-char-container-sample](append-char-container-sample)
1919

2020
This sample shows how you can create a channel. It then creates a container in that channel, which can contain CHAR data. Additional CHAR data is then appended to the container, and it then gets the combined data from the channel as a string output.
2121

22-
## bit-link-program-sample
22+
## [bit-link-program-sample](bit-link-program-sample)
2323

2424
This sample walks through how to use the JCICSX API to perform a LINK to a CICS Program. During the LINK, it passes through a BIT container containing a temperature in Celcius, and then receives BIT data as the output from the CICS Program containing the temperature converted to Fahrenheit.
2525

26-
## char-link-program-sample
26+
## [char-link-program-sample](char-link-program-sample)
2727

2828
This sample takes a string and links to a COBOL program with a channel and input CHAR container. The COBOL program reverses the string and returns it to the Java program in an output CHAR container.
2929

30-
## cics-java-liberty-restapp
30+
## [cics-java-liberty-restapp](cics-java-liberty-restapp)
3131

3232
This sample mimics the existing JCICS [cics-java-liberty-restapp sample](https://github.com/cicsdev/cics-java-liberty-restapp/blob/master/src/Java/com/ibm/cicsdev/restapp/InfoResource.java), but is updated to use JCICSX instead of JCICS to show the similarities and differences. It creates a RESTful application that takes a string as an input and reverses it, and get the date and time from CICS.
3333

34-
## mockito-testing-containers-sample
34+
## [mockito-testing-containers-sample](mockito-testing-containers-sample)
3535

3636
This sample shows how to get data from BIT containers, and how to test the core logic of your application by using Mockito to mock the JCICSX calls.
3737

0 commit comments

Comments
 (0)