Skip to content

Commit d9fca4e

Browse files
Tweak comments & copyright
1 parent 7067631 commit d9fca4e

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

projects/com.ibm.cics.server.examples.wlp.link/src/com/ibm/cics/server/examples/wlp/link/HelloLiberty.java

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,26 @@
1010
import com.ibm.cics.server.Task;
1111
import com.ibm.cics.server.invocation.CICSProgram;
1212

13+
/* Licensed Materials - Property of IBM */
14+
/* */
15+
/* SAMPLE */
16+
/* */
17+
/* (c) Copyright IBM Corp. 2016 All Rights Reserved */
18+
/* */
19+
/* US Government Users Restricted Rights - Use, duplication or */
20+
/* disclosure restricted by GSA ADP Schedule Contract with IBM Corp */
21+
/* */
1322
/**
1423
* Sample code to be invoked by EXEC CICS LINK.
1524
*/
1625
public class HelloLiberty {
1726

1827
/**
1928
* Prints a greeting message to STDOUT. When invoked with a text container
20-
* called NAME on the current channel. that name is used. Otherwise, the
29+
* called NAME on the current channel, that name is used. Otherwise, the
2130
* user ID of the CICS task is used.
2231
*/
23-
@CICSProgram("HELLOWLP")
32+
@CICSProgram("HELLOWLP") // This method can be invoked by EXEC LINK PROGRAM(HELLOWLP)
2433
public void printMessage() {
2534
StringBuilder sb = new StringBuilder();
2635
sb.append("Hello ");

0 commit comments

Comments
 (0)