1 22 package org.jboss.tutorial.ejb21_client_adaptors.bean; 23 24 import org.jboss.logging.Logger; 25 26 30 public class DeploymentDescriptorSession2Bean 31 { 32 private static final Logger log = Logger.getLogger(DeploymentDescriptorSession2Bean.class); 33 34 private String initValue = null; 35 36 public String getInitValue() 37 { 38 return initValue; 39 } 40 41 public void ejbCreate(String initValue) 42 { 43 this.initValue = initValue; 44 } 45 46 } 47 | Popular Tags |