blob: f967378b0028fe6d0dbf89b265db7be7e1eaeb99 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.jee;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.util.ArrayList;
import java.util.List;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "jms-connection-factoryType", propOrder = {
"name",
"descriptions",
"className",
"interfaceName",
"resourceAdapter",
"user",
"password",
"clientId",
"transactional",
"maxPoolSize",
"minPoolSize",
"property"
})
public class JMSConnectionFactory implements Keyable<String> {
@XmlTransient
protected TextMap description = new TextMap();
@XmlElement(required = true)
protected String name;
@XmlElement(name = "max-pool-size")
protected Integer maxPoolSize;
@XmlElement(name = "min-pool-size")
protected Integer minPoolSize;
@XmlElement(name = "class-name")
protected String className;
@XmlElement(name = "interface-name")
protected String interfaceName;
@XmlElement(name = "resource-adapter")
protected String resourceAdapter;
@XmlElement(name = "user")
protected String user;
@XmlElement(name = "password")
protected String password;
@XmlElement(name = "clientId")
protected String clientId;
@XmlElement(name = "transactional")
protected boolean transactional;
protected List<Property> property;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlElement(name = "description")
public Text[] getDescriptions() {
return description.toArray();
}
public JMSConnectionFactory property(final String name, final String value) {
getProperty().add(new Property(name, value));
return this;
}
public boolean isTransactional() {
return transactional;
}
public void setTransactional(boolean transactional) {
this.transactional = transactional;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getResourceAdapter() {
return resourceAdapter;
}
public void setResourceAdapter(String resourceAdapter) {
this.resourceAdapter = resourceAdapter;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public String getInterfaceName() {
return interfaceName;
}
public void setInterfaceName(String interfaceName) {
this.interfaceName = interfaceName;
}
public List<Property> getProperty() {
if (property == null) {
property = new ArrayList<Property>();
}
return this.property;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getMaxPoolSize() {
return maxPoolSize;
}
public void setMaxPoolSize(Integer maxPoolSize) {
this.maxPoolSize = maxPoolSize;
}
public Integer getMinPoolSize() {
return minPoolSize;
}
public void setMinPoolSize(Integer minPoolSize) {
this.minPoolSize = minPoolSize;
}
public String getId() {
return id;
}
public void setId(final String value) {
this.id = value;
}
@Override
public String getKey() {
final String name = getName();
if (name == null || name.startsWith("java:")) return name;
return "java:comp/env/" + name;
}
}