1 22 package org.jboss.ejb3.test.appclient.client; 23 24 import javax.annotation.Resource; 25 26 32 public class SimpleResourceClient 33 { 34 @Resource(name="msg") 35 private static String msg; 36 37 40 public static void main(String [] args) 41 { 42 if(msg == null) 43 throw new NullPointerException ("msg is null"); 44 45 System.out.println("msg = " + msg); 46 } 47 48 } 49 | Popular Tags |