coding-actions/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java [48:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String execute() throws Exception {
        messageStore = new MessageStore() ;

        //Action included a query string parameter of userName
        //or a form field with name of userName
        if (userName != null) {
            messageStore.setMessage( messageStore.getMessage() + " " + userName);
        }

        helloCount++;

        return SUCCESS;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



form-validation/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java [52:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public String execute() throws Exception {

		messageStore = new MessageStore() ;

		//Action included a query string parameter of userName
		//or a form field with name of userName
		if (userName != null) {

			messageStore.setMessage( messageStore.getMessage() + " " + userName);

		}

		helloCount++;

		return SUCCESS;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



form-processing/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java [52:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String execute() throws Exception {
        messageStore = new MessageStore() ;

        //Action included a query string parameter of userName
        //or a form field with name of userName
        if (userName != null) {
            messageStore.setMessage( messageStore.getMessage() + " " + userName);
        }

        helloCount++;

        return SUCCESS;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



exception-handling/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java [52:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public String execute() throws Exception {

		messageStore = new MessageStore() ;

		//Action included a query string parameter of userName
		//or a form field with name of userName
		if (userName != null) {

			messageStore.setMessage( messageStore.getMessage() + " " + userName);

		}

		helloCount++;

		return SUCCESS;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



message-resource/src/main/java/org/apache/struts/helloworld/action/HelloWorldAction.java [52:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public String execute() throws Exception {

		messageStore = new MessageStore() ;

		//Action included a query string parameter of userName
		//or a form field with name of userName
		if (userName != null) {

			messageStore.setMessage( messageStore.getMessage() + " " + userName);

		}

		helloCount++;

		return SUCCESS;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



