Searched defs:descriptor (Results 1 - 25 of 821) sorted by relevance

1234567891011>>

/glassfish-3.1.2/ejb/ejb-internal-api/src/main/java/org/glassfish/ejb/spi/
H A DMessageBeanClientFactory.java54 MessageBeanClient createMessageBeanClient(EjbMessageBeanDescriptor descriptor); argument
/glassfish-3.1.2/connectors/connectors-inbound-runtime/src/main/java/com/sun/enterprise/connectors/inbound/
H A DConnectorMessageBeanClientFactory.java65 * @param descriptor <code>EjbMessageBeanDescriptor.
68 public MessageBeanClient createMessageBeanClient(EjbMessageBeanDescriptor descriptor) { argument
69 return new ConnectorMessageBeanClient(descriptor);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/
H A DACCAppClientArchivist.java58 * The generated file contains a generated GlassFish runtime descriptor.
60 * descriptor, then the normal archivist logic would detect that both the
65 * deployment descriptor.
74 public void readRuntimeDeploymentDescriptor(ReadableArchive archive, ApplicationClientDescriptor descriptor) throws IOException, SAXParseException { argument
75 super.readRuntimeDeploymentDescriptor(archive, descriptor, false);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/io/
H A DAppClientDeploymentDescriptorFile.java71 * @param the descriptor for which we need the node
73 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
H A DApplicationDeploymentDescriptorFile.java73 * @param the descriptor for which we need the node
75 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
H A DDeploymentDescriptorFileFactory.java68 * capable of handling the passed descriptor
70 * @param descriptor used to identify the associated DeploymentDescriptorFile
73 public static DeploymentDescriptorFile getDDFileFor(RootDeploymentDescriptor descriptor) { argument
74 if (descriptor instanceof Application) {
77 if (descriptor instanceof EjbBundleDescriptor) {
80 if (descriptor instanceof WebBundleDescriptor) {
83 if (descriptor instanceof ConnectorDescriptor) {
86 if (descriptor instanceof ApplicationClientDescriptor) {
94 * capable of handling the passed descriptor
96 * @param descriptor use
[all...]
H A DEjbDeploymentDescriptorFile.java71 * @param the descriptor for which we need the node
73 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
H A DPersistenceDeploymentDescriptorFile.java55 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
58 // When it is called from former method, descriptor is non-null,
59 // but when it is called later method, descriptor is null.
60 if(descriptor==null ||
61 descriptor instanceof Application ||
62 descriptor instanceof ApplicationClientDescriptor ||
63 descriptor instanceof EjbBundleDescriptor ||
64 descriptor instanceof WebBundleDescriptor) {
67 throw new IllegalArgumentException(descriptor.getClass().getName()+
H A DWebDeploymentDescriptorFile.java66 * @param descriptor descriptor for which we need the node
68 public RootXMLNode<WebBundleDescriptor> getRootXMLNode(WebBundleDescriptor descriptor) { argument
H A DWebFragmentDeploymentDescriptorFile.java66 * @param descriptor descriptor for which we need the node
68 public RootXMLNode<WebFragmentDescriptor> getRootXMLNode(WebFragmentDescriptor descriptor) { argument
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/io/runtime/
H A DAppClientRuntimeDDFile.java71 * @param the descriptor for which we need the node
73 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
75 if (descriptor instanceof ApplicationClientDescriptor) {
76 return new AppClientRuntimeNode((ApplicationClientDescriptor) descriptor);
H A DApplicationRuntimeDDFile.java70 * @param the descriptor for which we need the node
72 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
74 if (descriptor instanceof Application) {
75 return new ApplicationRuntimeNode((Application) descriptor);
H A DConnectorRuntimeDDFile.java70 * @param the descriptor for which we need the node
72 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
74 if (descriptor instanceof ConnectorDescriptor) {
75 return new ConnectorNode((ConnectorDescriptor) descriptor);
H A DEjbRuntimeDDFile.java71 * @param the descriptor for which we need the node
73 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
75 if (descriptor instanceof EjbBundleDescriptor) {
76 return new EjbBundleRuntimeNode((EjbBundleDescriptor) descriptor);
H A DGFAppClientRuntimeDDFile.java67 * @param the descriptor for which we need the node
69 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
71 if (descriptor instanceof ApplicationClientDescriptor) {
72 return new GFAppClientRuntimeNode((ApplicationClientDescriptor) descriptor);
H A DGFApplicationRuntimeDDFile.java67 * @param the descriptor for which we need the node
69 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
71 if (descriptor instanceof Application) {
72 return new GFApplicationRuntimeNode((Application) descriptor);
H A DGFEjbRuntimeDDFile.java67 * @param the descriptor for which we need the node
69 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
71 if (descriptor instanceof EjbBundleDescriptor) {
72 return new GFEjbBundleRuntimeNode((EjbBundleDescriptor) descriptor);
H A DGFWebRuntimeDDFile.java67 * @param the descriptor for which we need the node
69 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
71 if (descriptor instanceof WebBundleDescriptor) {
72 return new GFWebBundleRuntimeNode((WebBundleDescriptor) descriptor);
H A DRuntimeDDFileFactory.java60 * capable of handling the passed descriptor
62 * @param descriptor used to identify the associated DeploymentDescriptorFile
65 public static DeploymentDescriptorFile getDDFileFor(RootDeploymentDescriptor descriptor) { argument
66 if (descriptor instanceof Application) {
69 if (descriptor instanceof EjbBundleDescriptor) {
72 if (descriptor instanceof WebBundleDescriptor) {
75 if (descriptor instanceof ConnectorDescriptor) {
78 if (descriptor instanceof ApplicationClientDescriptor) {
H A DWLApplicationRuntimeDDFile.java70 * @param the descriptor for which we need the node
72 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
74 if (descriptor instanceof Application) {
75 return new WLApplicationRuntimeNode((Application) descriptor);
H A DWLEjbRuntimeDDFile.java69 * @param the descriptor for which we need the node
72 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
H A DWLWebRuntimeDDFile.java70 * @param the descriptor for which we need the node
72 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
74 if (descriptor instanceof WebBundleDescriptor) {
75 return new WLWebBundleRuntimeNode((WebBundleDescriptor) descriptor);
H A DWebRuntimeDDFile.java70 * @param the descriptor for which we need the node
72 public RootXMLNode getRootXMLNode(Descriptor descriptor) { argument
74 if (descriptor instanceof WebBundleDescriptor) {
75 return new WebBundleRuntimeNode((WebBundleDescriptor) descriptor);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ejb/
H A DExcludeListNode.java65 private MethodPermissionDescriptor descriptor; field in class:ExcludeListNode
79 if (descriptor==null) {
80 descriptor = (MethodPermissionDescriptor) DescriptorFactory.getDescriptor(getXMLPath());
81 descriptor.addMethodPermission(MethodPermission.getExcludedMethodPermission());
83 return descriptor;
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/common/
H A DRuntimeNameValuePairNode.java58 NameValuePairDescriptor descriptor = null; field in class:RuntimeNameValuePairNode
60 * @return the descriptor instance to associate with this XMLNode
63 if (descriptor==null) {
64 descriptor = new NameValuePairDescriptor();
66 return descriptor;

Completed in 97 milliseconds

1234567891011>>