/* * JBoss, Home of Professional Open Source. * Copyright 2009, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.test.ws.jaxws.jbws2074.usecase2.service; import javax.annotation.PostConstruct; import javax.annotation.Resource; import javax.ejb.Stateless; import javax.jws.WebService; import javax.xml.ws.WebServiceException; import org.jboss.logging.Logger; import org.jboss.ws.api.annotation.WebContext; @Stateless @WebService ( name = "EJB3", serviceName = "EJB3Service", targetNamespace = "http://ws.jboss.org/jbws2074", endpointInterface = "org.jboss.test.ws.jaxws.jbws2074.usecase2.service.EJB3Iface" ) @WebContext ( urlPattern="/Service", contextRoot="/jaxws-jbws2074-usecase2" ) public class EJB3Impl implements EJB3Iface { private static Logger log = Logger.getLogger(EJB3Impl.class); /** * java.lang.Boolean */ // XML driven injection private Boolean boolean0; private Boolean _boolean1; // XML driven injection @SuppressWarnings("unused") private void setBoolean1(Boolean b) { this._boolean1 = b; } /** * java.lang.Byte */ // XML driven injection private Byte byte0; private Byte _byte1; // XML driven injection @SuppressWarnings("unused") private void setByte1(Byte b) { this._byte1 = b; } /** * java.lang.Character */ // XML driven injection private Character character0; private Character _character1; // XML driven injection @SuppressWarnings("unused") private void setCharacter1(Character c) { this._character1 = c; } /** * java.lang.Short */ // XML driven injection private Short short0; private Short _short1; // XML driven injection @SuppressWarnings("unused") private void setShort1(Short i) { this._short1 = i; } /** * java.lang.Integer */ @Resource(name = "integer") private Integer integer0; private Integer _integer1; @Resource(name = "integer") private void setInteger1(Integer i) { this._integer1 = i; } /** * java.lang.Long */ @Resource(name = "long") private Long long0; private Long _long1; @Resource(name = "long") private void setLong1(Long l) { this._long1 = l; } /** * java.lang.Float */ @Resource(name = "float") private Float float0; private Float _float1; @Resource(name = "float") private void setFloat1(Float f) { this._float1 = f; } /** * java.lang.Double */ @Resource(name = "double") private Double double0; private Double _double1; @Resource(name = "double") private void setDouble1(Double d) { this._double1 = d; } /** * java.lang.String */ @Resource(name = "string") private String string; private String _string1; @Resource(name = "string") private void setString1(String s) { this._string1 = s; } /** * Indicates whether handler is in correct state. */ private boolean correctState; @PostConstruct private void init() { boolean correctInitialization = true; // java.lang.Boolean if (this.boolean0 == null || this.boolean0 != true) { log.error("Descriptor driven initialization for boolean0 failed"); correctInitialization = false; } if (this._boolean1 == null || this._boolean1 != true) { log.error("Descriptor driven initialization for boolean1 failed"); correctInitialization = false; } // java.lang.Byte if (this.byte0 == null || this.byte0 != (byte)1) { log.error("Descriptor driven initialization for byte0 failed"); correctInitialization = false; } if (this._byte1 == null || this._byte1 != (byte)1) { log.error("Descriptor driven initialization for byte1 failed"); correctInitialization = false; } // java.lang.Character if (this.character0 == null || this.character0 != 'c') { log.error("Descriptor driven initialization for character0 failed"); correctInitialization = false; } if (this._character1 == null || this._character1 != 'c') { log.error("Descriptor driven initialization for character1 failed"); correctInitialization = false; } // java.lang.Short if (this.short0 == null || this.short0 != (short)5) { log.error("Descriptor driven initialization for short0 failed"); correctInitialization = false; } if (this._short1 == null || this._short1 != (short)5) { log.error("Descriptor driven initialization for short1 failed"); correctInitialization = false; } // java.lang.Integer if (this.integer0 == null || this.integer0 != 7) { log.error("@Resource initialization for integer0 failed"); correctInitialization = false; } if (this._integer1 == null || this._integer1 != 7) { log.error("@Resource initialization for integer1 failed"); correctInitialization = false; } // java.lang.Long if (this.long0 == null || this.long0 != 11L) { log.error("@Resource initialization for long0 failed"); correctInitialization = false; } if (this._long1 == null || this._long1 != 11L) { log.error("@Resource initialization for long1 failed"); correctInitialization = false; } // java.lang.Float if (this.float0 == null || this.float0 != 13.0f) { log.error("@Resource initialization for float0 failed"); correctInitialization = false; } if (this._float1 == null || this._float1 != 13.0f) { log.error("@Resource initialization for float1 failed"); correctInitialization = false; } // java.lang.Double if (this.double0 == null || this.double0 != 17.0) { log.error("@Resource initialization for double0 failed"); correctInitialization = false; } if (this._double1 == null || this._double1 != 17.0) { log.error("@Resource initialization for double1 failed"); correctInitialization = false; } // java.lang.String if ("s".equals(this.string) == false) { log.error("@Resource initialization for string0 failed"); correctInitialization = false; } if ("s".equals(this._string1) == false) { log.error("@Resource initialization for string1 failed"); correctInitialization = false; } this.correctState = correctInitialization; } @Override public String echo(String msg) { if (!this.correctState) { throw new WebServiceException("Unfunctional javax.annotation.* annotations"); } log.info("echo: " + msg); return msg + ":EJB3Impl"; } }