alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Spring Framework example source code file (MessengerImpl.bsh)

This example Spring Framework source code file (MessengerImpl.bsh) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Spring Framework tags/keywords

mymessenger, mymessenger, string, string, testbean, testbean, testbeanawaremessenger, testbeanawaremessenger

The Spring Framework MessengerImpl.bsh source code

import org.springframework.beans.TestBean;
import org.springframework.scripting.TestBeanAwareMessenger;

public class MyMessenger implements TestBeanAwareMessenger {

	private String message;

	private TestBean testBean;

	private boolean active;

	public void init() {
		active = true;
	}

	public String getMessage() {
		if (!active && message != null) throw new java.lang.IllegalStateException();
		return message;
	}

	public void setMessage(String aMessage) {
		message = aMessage;
	}

	public TestBean getTestBean() {
		return testBean;
	}

	public void setTestBean(TestBean tb) {
		testBean = tb;
	}

	public void destroy() {
		message = null;
		active = false;
	}

}

Other Spring Framework examples (source code examples)

Here is a short list of links related to this Spring Framework MessengerImpl.bsh source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.