com.sun.enterprise.resource.deployer.JMSDestinationDefinitionDeployer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connectors-runtime Show documentation
Show all versions of connectors-runtime Show documentation
Java EE Connector Architecture Runtime for GlassFish
/*
* Copyright (c) 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.enterprise.resource.deployer;
import com.sun.appserv.connectors.internal.api.ConnectorConstants;
import com.sun.enterprise.config.serverbeans.Resource;
import com.sun.enterprise.config.serverbeans.Resources;
import com.sun.enterprise.deployment.JMSDestinationDefinitionDescriptor;
import com.sun.logging.LogDomains;
import jakarta.inject.Inject;
import jakarta.inject.Provider;
import java.beans.PropertyVetoException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.logging.Logger;
import org.glassfish.api.naming.SimpleJndiName;
import org.glassfish.connectors.config.AdminObjectResource;
import org.glassfish.resourcebase.resources.api.ResourceConflictException;
import org.glassfish.resourcebase.resources.api.ResourceDeployer;
import org.glassfish.resourcebase.resources.api.ResourceDeployerInfo;
import org.jvnet.hk2.annotations.Service;
import org.jvnet.hk2.config.ConfigBeanProxy;
import org.jvnet.hk2.config.TransactionFailure;
import org.jvnet.hk2.config.types.Property;
import static com.sun.appserv.connectors.internal.api.ConnectorsUtil.deriveResourceName;
@Service
@ResourceDeployerInfo(JMSDestinationDefinitionDescriptor.class)
public class JMSDestinationDefinitionDeployer implements ResourceDeployer {
@Inject
private Provider resourceManagerFactoryProvider;
private static final Logger LOG = LogDomains.getLogger(JMSDestinationDefinitionDeployer.class, LogDomains.RSR_LOGGER);
static final String PROPERTY_PREFIX = "org.glassfish.jms-destination.";
@Override
public void deployResource(JMSDestinationDefinitionDescriptor resource, String applicationName, String moduleName) throws Exception {
//TODO ASR
}
@Override
public void deployResource(JMSDestinationDefinitionDescriptor resource) throws Exception {
SimpleJndiName resourceName = deriveResourceName(resource.getResourceId(), resource.getJndiName(), resource.getResourceType());
MyJMSDestinationResource jmsDestinationResource = new MyJMSDestinationResource(resource, resourceName);
getDeployer(jmsDestinationResource).deployResource(jmsDestinationResource);
}
@Override
public void validatePreservedResource(com.sun.enterprise.config.serverbeans.Application oldApp,
com.sun.enterprise.config.serverbeans.Application newApp,
Resource resource,
Resources allResources)
throws ResourceConflictException {
//do nothing.
}
private ResourceDeployer getDeployer(Object resource) {
return resourceManagerFactoryProvider.get().getResourceDeployer(resource);
}
private JMSDestinationProperty convertProperty(String name, String value) {
return new JMSDestinationProperty(name, value);
}
@Override
public void undeployResource(JMSDestinationDefinitionDescriptor resource, String applicationName, String moduleName) throws Exception {
//TODO ASR
}
@Override
public void undeployResource(JMSDestinationDefinitionDescriptor resource) throws Exception {
SimpleJndiName resourceName = deriveResourceName(resource.getResourceId(), resource.getJndiName(), resource.getResourceType());
MyJMSDestinationResource jmsDestinationResource = new MyJMSDestinationResource(resource, resourceName);
getDeployer(jmsDestinationResource).undeployResource(jmsDestinationResource);
}
@Override
public void enableResource(JMSDestinationDefinitionDescriptor resource) throws Exception {
throw new UnsupportedOperationException("enable() not supported for jms-destination-definition type");
}
@Override
public void disableResource(JMSDestinationDefinitionDescriptor resource) throws Exception {
throw new UnsupportedOperationException("disable() not supported for jms-destination-definition type");
}
@Override
public boolean handles(Object resource) {
return resource instanceof JMSDestinationDefinitionDescriptor;
}
abstract class FakeConfigBean implements ConfigBeanProxy {
@Override
public ConfigBeanProxy deepCopy(ConfigBeanProxy parent) {
throw new UnsupportedOperationException();
}
@Override
public ConfigBeanProxy getParent() {
return null;
}
@Override
public T getParent(Class tClass) {
return null;
}
@Override
public T createChild(Class tClass) throws TransactionFailure {
return null;
}
}
class JMSDestinationProperty extends FakeConfigBean implements Property {
private String name;
private String value;
private String description;
JMSDestinationProperty(String name, String value) {
this.name = name;
this.value = value;
}
@Override
public String getName() {
return name;
}
@Override
public void setName(String value) throws PropertyVetoException {
this.name = value;
}
@Override
public String getValue() {
return value;
}
@Override
public void setValue(String value) throws PropertyVetoException {
this.value = value;
}
@Override
public String getDescription() {
return description;
}
@Override
public void setDescription(String value) throws PropertyVetoException {
this.description = value;
}
public void injectedInto(Object o) {
//do nothing
}
}
class MyJMSDestinationResource extends FakeConfigBean implements AdminObjectResource {
private final JMSDestinationDefinitionDescriptor desc;
private final SimpleJndiName name;
public MyJMSDestinationResource(JMSDestinationDefinitionDescriptor desc, SimpleJndiName name) {
this.desc = desc;
this.name = name;
}
@Override
public String getObjectType() {
return "user";
}
@Override
public void setObjectType(String value) throws PropertyVetoException {
}
@Override
public String getIdentity() {
return name.toString();
}
@Override
public String getResAdapter() {
String resourceAdapter = desc.getResourceAdapter();
if (resourceAdapter != null && !resourceAdapter.equals("")) {
return resourceAdapter;
}
return ConnectorConstants.DEFAULT_JMS_ADAPTER;
}
@Override
public void setResAdapter(String value) throws PropertyVetoException {
//do nothing
}
@Override
public String getDescription() {
return desc.getDescription();
}
@Override
public void setDescription(String value) throws PropertyVetoException {
//do nothing
}
@Override
public String getJndiName() {
return name.toString();
}
@Override
public void setJndiName(String value) throws PropertyVetoException {
//do nothing
}
@Override
public String getResType() {
return desc.getInterfaceName();
}
@Override
public void setResType(String value) throws PropertyVetoException {
//do nothing
}
@Override
public String getClassName() {
return desc.getClassName();
}
@Override
public void setClassName(String value) throws PropertyVetoException {
//do nothing
}
@Override
public String getEnabled() {
return "true";
}
@Override
public void setEnabled(String value) throws PropertyVetoException {
//do nothing
}
@Override
public List getProperty() {
String destinationName = desc.getDestinationName();
boolean destinationNameSet = false;
List jmsDestinationProperties = new ArrayList<>();
if (destinationName != null && !destinationName.equals("")) {
JMSDestinationProperty dp = convertProperty("Name", destinationName);
jmsDestinationProperties.add(dp);
destinationNameSet = true;
}
Properties p = desc.getProperties();
for (Entry
© 2015 - 2025 Weber Informatics LLC | Privacy Policy