you can do that with css.
you should be able to set the background color (or a background
image if i recall) separately for the logged out state and logged in state.
see the ContactMgr demo-app's resources/styles.css
52 JDesktopPane
53 {
54 background-color: gradient(0,0,white,800,0,#C4D5DE);
55 }
56 JDesktopPane.loggedout
57 {
58 background-image: resource("images/jmatter.png") centered;
59 }
/ eitan