org.apache.openejb.jee.wls.WeblogicEnterpriseBean Maven / Gradle / Ivy
The newest version!
/**
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.wls;
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.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
/**
* Java class for weblogic-enterprise-bean complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="weblogic-enterprise-bean">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ejb-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <choice minOccurs="0">
* <element name="entity-descriptor" type="{http://www.bea.com/ns/weblogic/90}entity-descriptor"/>
* <element name="stateless-session-descriptor" type="{http://www.bea.com/ns/weblogic/90}stateless-session-descriptor"/>
* <element name="stateful-session-descriptor" type="{http://www.bea.com/ns/weblogic/90}stateful-session-descriptor"/>
* <element name="message-driven-descriptor" type="{http://www.bea.com/ns/weblogic/90}message-driven-descriptor"/>
* </choice>
* <element name="transaction-descriptor" type="{http://www.bea.com/ns/weblogic/90}transaction-descriptor" minOccurs="0"/>
* <element name="iiop-security-descriptor" type="{http://www.bea.com/ns/weblogic/90}iiop-security-descriptor" minOccurs="0"/>
* <group ref="{http://www.bea.com/ns/weblogic/90}reference-descriptorGroup"/>
* <element name="enable-call-by-reference" type="{http://www.bea.com/ns/weblogic/90}true-false" minOccurs="0"/>
* <element name="network-access-point" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="clients-on-same-server" type="{http://www.bea.com/ns/weblogic/90}true-false" minOccurs="0"/>
* <element name="run-as-principal-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="create-as-principal-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="remove-as-principal-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="passivate-as-principal-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="jndi-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="local-jndi-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dispatch-policy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="remote-client-timeout" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "weblogic-enterprise-bean", propOrder = {
"ejbName",
"entityDescriptor",
"statelessSessionDescriptor",
"statefulSessionDescriptor",
"messageDrivenDescriptor",
"transactionDescriptor",
"iiopSecurityDescriptor",
"referenceDescriptor",
"resourceDescription",
"resourceEnvDescription",
"ejbReferenceDescription",
"serviceReferenceDescription",
"enableCallByReference",
"networkAccessPoint",
"clientsOnSameServer",
"runAsPrincipalName",
"createAsPrincipalName",
"removeAsPrincipalName",
"passivateAsPrincipalName",
"jndiName",
"localJndiName",
"dispatchPolicy",
"remoteClientTimeout"
})
public class WeblogicEnterpriseBean {
@XmlElement(name = "ejb-name", required = true)
protected String ejbName;
@XmlElement(name = "entity-descriptor")
protected EntityDescriptor entityDescriptor;
@XmlElement(name = "stateless-session-descriptor")
protected StatelessSessionDescriptor statelessSessionDescriptor;
@XmlElement(name = "stateful-session-descriptor")
protected StatefulSessionDescriptor statefulSessionDescriptor;
@XmlElement(name = "message-driven-descriptor")
protected MessageDrivenDescriptor messageDrivenDescriptor;
@XmlElement(name = "transaction-descriptor")
protected TransactionDescriptor transactionDescriptor;
@XmlElement(name = "iiop-security-descriptor")
protected IiopSecurityDescriptor iiopSecurityDescriptor;
@XmlElement(name = "reference-descriptor")
protected ReferenceDescriptor referenceDescriptor;
@XmlElement(name = "resource-description")
protected List resourceDescription;
@XmlElement(name = "resource-env-description")
protected List resourceEnvDescription;
@XmlElement(name = "ejb-reference-description")
protected List ejbReferenceDescription;
@XmlElement(name = "service-reference-description")
protected List serviceReferenceDescription;
@XmlElement(name = "enable-call-by-reference")
@XmlJavaTypeAdapter(TrueFalseAdapter.class)
protected Boolean enableCallByReference;
@XmlElement(name = "network-access-point")
protected String networkAccessPoint;
@XmlElement(name = "clients-on-same-server")
@XmlJavaTypeAdapter(TrueFalseAdapter.class)
protected Boolean clientsOnSameServer;
@XmlElement(name = "run-as-principal-name")
protected String runAsPrincipalName;
@XmlElement(name = "create-as-principal-name")
protected String createAsPrincipalName;
@XmlElement(name = "remove-as-principal-name")
protected String removeAsPrincipalName;
@XmlElement(name = "passivate-as-principal-name")
protected String passivateAsPrincipalName;
@XmlElement(name = "jndi-name")
protected String jndiName;
@XmlElement(name = "local-jndi-name")
protected String localJndiName;
@XmlElement(name = "dispatch-policy")
protected String dispatchPolicy;
@XmlElement(name = "remote-client-timeout")
protected BigInteger remoteClientTimeout;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
protected String id;
/**
* Gets the value of the ejbName property.
*
* @return possible object is
* {@link String }
*/
public String getEjbName() {
return ejbName;
}
/**
* Sets the value of the ejbName property.
*
* @param value allowed object is
* {@link String }
*/
public void setEjbName(final String value) {
this.ejbName = value;
}
/**
* Gets the value of the entityDescriptor property.
*
* @return possible object is
* {@link EntityDescriptor }
*/
public EntityDescriptor getEntityDescriptor() {
return entityDescriptor;
}
/**
* Sets the value of the entityDescriptor property.
*
* @param value allowed object is
* {@link EntityDescriptor }
*/
public void setEntityDescriptor(final EntityDescriptor value) {
this.entityDescriptor = value;
}
/**
* Gets the value of the statelessSessionDescriptor property.
*
* @return possible object is
* {@link StatelessSessionDescriptor }
*/
public StatelessSessionDescriptor getStatelessSessionDescriptor() {
return statelessSessionDescriptor;
}
/**
* Sets the value of the statelessSessionDescriptor property.
*
* @param value allowed object is
* {@link StatelessSessionDescriptor }
*/
public void setStatelessSessionDescriptor(final StatelessSessionDescriptor value) {
this.statelessSessionDescriptor = value;
}
/**
* Gets the value of the statefulSessionDescriptor property.
*
* @return possible object is
* {@link StatefulSessionDescriptor }
*/
public StatefulSessionDescriptor getStatefulSessionDescriptor() {
return statefulSessionDescriptor;
}
/**
* Sets the value of the statefulSessionDescriptor property.
*
* @param value allowed object is
* {@link StatefulSessionDescriptor }
*/
public void setStatefulSessionDescriptor(final StatefulSessionDescriptor value) {
this.statefulSessionDescriptor = value;
}
/**
* Gets the value of the messageDrivenDescriptor property.
*
* @return possible object is
* {@link MessageDrivenDescriptor }
*/
public MessageDrivenDescriptor getMessageDrivenDescriptor() {
return messageDrivenDescriptor;
}
/**
* Sets the value of the messageDrivenDescriptor property.
*
* @param value allowed object is
* {@link MessageDrivenDescriptor }
*/
public void setMessageDrivenDescriptor(final MessageDrivenDescriptor value) {
this.messageDrivenDescriptor = value;
}
/**
* Gets the value of the transactionDescriptor property.
*
* @return possible object is
* {@link TransactionDescriptor }
*/
public TransactionDescriptor getTransactionDescriptor() {
return transactionDescriptor;
}
/**
* Sets the value of the transactionDescriptor property.
*
* @param value allowed object is
* {@link TransactionDescriptor }
*/
public void setTransactionDescriptor(final TransactionDescriptor value) {
this.transactionDescriptor = value;
}
/**
* Gets the value of the iiopSecurityDescriptor property.
*
* @return possible object is
* {@link IiopSecurityDescriptor }
*/
public IiopSecurityDescriptor getIiopSecurityDescriptor() {
return iiopSecurityDescriptor;
}
/**
* Sets the value of the iiopSecurityDescriptor property.
*
* @param value allowed object is
* {@link IiopSecurityDescriptor }
*/
public void setIiopSecurityDescriptor(final IiopSecurityDescriptor value) {
this.iiopSecurityDescriptor = value;
}
public ReferenceDescriptor getReferenceDescriptor() {
return referenceDescriptor;
}
public void setReferenceDescriptor(final ReferenceDescriptor referenceDescriptor) {
this.referenceDescriptor = referenceDescriptor;
}
/**
* Gets the value of the resourceDescription property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the resourceDescription property.
*
*
* For example, to add a new item, do as follows:
*
* getResourceDescription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ResourceDescription }
*/
public List getResourceDescription() {
if (resourceDescription == null) {
resourceDescription = new ArrayList();
}
return this.resourceDescription;
}
/**
* Gets the value of the resourceEnvDescription property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the resourceEnvDescription property.
*
*
* For example, to add a new item, do as follows:
*
* getResourceEnvDescription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ResourceEnvDescription }
*/
public List getResourceEnvDescription() {
if (resourceEnvDescription == null) {
resourceEnvDescription = new ArrayList();
}
return this.resourceEnvDescription;
}
/**
* Gets the value of the ejbReferenceDescription property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the ejbReferenceDescription property.
*
*
* For example, to add a new item, do as follows:
*
* getEjbReferenceDescription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EjbReferenceDescription }
*/
public List getEjbReferenceDescription() {
if (ejbReferenceDescription == null) {
ejbReferenceDescription = new ArrayList();
}
return this.ejbReferenceDescription;
}
/**
* Gets the value of the serviceReferenceDescription property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the serviceReferenceDescription property.
*
*
* For example, to add a new item, do as follows:
*
* getServiceReferenceDescription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ServiceReferenceDescription }
*/
public List getServiceReferenceDescription() {
if (serviceReferenceDescription == null) {
serviceReferenceDescription = new ArrayList();
}
return this.serviceReferenceDescription;
}
/**
* Gets the value of the enableCallByReference property.
*
* @return possible object is
* {@link Boolean }
*/
public Boolean getEnableCallByReference() {
return enableCallByReference;
}
/**
* Sets the value of the enableCallByReference property.
*
* @param value allowed object is
* {@link Boolean }
*/
public void setEnableCallByReference(final Boolean value) {
this.enableCallByReference = value;
}
/**
* Gets the value of the networkAccessPoint property.
*
* @return possible object is
* {@link String }
*/
public String getNetworkAccessPoint() {
return networkAccessPoint;
}
/**
* Sets the value of the networkAccessPoint property.
*
* @param value allowed object is
* {@link String }
*/
public void setNetworkAccessPoint(final String value) {
this.networkAccessPoint = value;
}
/**
* Gets the value of the clientsOnSameServer property.
*
* @return possible object is
* {@link Boolean }
*/
public Boolean getClientsOnSameServer() {
return clientsOnSameServer;
}
/**
* Sets the value of the clientsOnSameServer property.
*
* @param value allowed object is
* {@link Boolean }
*/
public void setClientsOnSameServer(final Boolean value) {
this.clientsOnSameServer = value;
}
/**
* Gets the value of the runAsPrincipalName property.
*
* @return possible object is
* {@link String }
*/
public String getRunAsPrincipalName() {
return runAsPrincipalName;
}
/**
* Sets the value of the runAsPrincipalName property.
*
* @param value allowed object is
* {@link String }
*/
public void setRunAsPrincipalName(final String value) {
this.runAsPrincipalName = value;
}
/**
* Gets the value of the createAsPrincipalName property.
*
* @return possible object is
* {@link String }
*/
public String getCreateAsPrincipalName() {
return createAsPrincipalName;
}
/**
* Sets the value of the createAsPrincipalName property.
*
* @param value allowed object is
* {@link String }
*/
public void setCreateAsPrincipalName(final String value) {
this.createAsPrincipalName = value;
}
/**
* Gets the value of the removeAsPrincipalName property.
*
* @return possible object is
* {@link String }
*/
public String getRemoveAsPrincipalName() {
return removeAsPrincipalName;
}
/**
* Sets the value of the removeAsPrincipalName property.
*
* @param value allowed object is
* {@link String }
*/
public void setRemoveAsPrincipalName(final String value) {
this.removeAsPrincipalName = value;
}
/**
* Gets the value of the passivateAsPrincipalName property.
*
* @return possible object is
* {@link String }
*/
public String getPassivateAsPrincipalName() {
return passivateAsPrincipalName;
}
/**
* Sets the value of the passivateAsPrincipalName property.
*
* @param value allowed object is
* {@link String }
*/
public void setPassivateAsPrincipalName(final String value) {
this.passivateAsPrincipalName = value;
}
/**
* Gets the value of the jndiName property.
*
* @return possible object is
* {@link String }
*/
public String getJndiName() {
return jndiName;
}
/**
* Sets the value of the jndiName property.
*
* @param value allowed object is
* {@link String }
*/
public void setJndiName(final String value) {
this.jndiName = value;
}
/**
* Gets the value of the localJndiName property.
*
* @return possible object is
* {@link String }
*/
public String getLocalJndiName() {
return localJndiName;
}
/**
* Sets the value of the localJndiName property.
*
* @param value allowed object is
* {@link String }
*/
public void setLocalJndiName(final String value) {
this.localJndiName = value;
}
/**
* Gets the value of the dispatchPolicy property.
*
* @return possible object is
* {@link String }
*/
public String getDispatchPolicy() {
return dispatchPolicy;
}
/**
* Sets the value of the dispatchPolicy property.
*
* @param value allowed object is
* {@link String }
*/
public void setDispatchPolicy(final String value) {
this.dispatchPolicy = value;
}
/**
* Gets the value of the remoteClientTimeout property.
*
* @return possible object is
* {@link BigInteger }
*/
public BigInteger getRemoteClientTimeout() {
return remoteClientTimeout;
}
/**
* Sets the value of the remoteClientTimeout property.
*
* @param value allowed object is
* {@link BigInteger }
*/
public void setRemoteClientTimeout(final BigInteger value) {
this.remoteClientTimeout = value;
}
/**
* Gets the value of the id property.
*
* @return possible object is
* {@link String }
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value allowed object is
* {@link String }
*/
public void setId(final String value) {
this.id = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy