Author: richard.opalka(a)jboss.com
Date: 2008-11-04 00:58:06 -0500 (Tue, 04 Nov 2008)
New Revision: 8646
Removed:
framework/trunk/src/main/java/org/jboss/wsf/framework/DeploymentAspectManagerLocatorImpl.java
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointDeployerLifecycleDeploymentAspect.java
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/IdentityDeploymentAspect.java
Log:
[JBWS-2338] removing DAManagerLocator iface + useless DAs
Deleted:
framework/trunk/src/main/java/org/jboss/wsf/framework/DeploymentAspectManagerLocatorImpl.java
===================================================================
---
framework/trunk/src/main/java/org/jboss/wsf/framework/DeploymentAspectManagerLocatorImpl.java 2008-11-04
05:54:16 UTC (rev 8645)
+++
framework/trunk/src/main/java/org/jboss/wsf/framework/DeploymentAspectManagerLocatorImpl.java 2008-11-04
05:58:06 UTC (rev 8646)
@@ -1,40 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, 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.wsf.framework;
-
-import org.jboss.wsf.common.KernelAwareSPIFactory;
-import org.jboss.wsf.spi.deployment.DeploymentAspectManager;
-import org.jboss.wsf.spi.DeploymentAspectManagerLocator;
-
-/**
- * DeploymentAspectManagerLocator implementation
- * @author richard.opalka(a)jboss.com
- */
-public final class DeploymentAspectManagerLocatorImpl implements
DeploymentAspectManagerLocator
-{
- public DeploymentAspectManager locateDeploymentAspectManager(String managerName)
- {
- return new KernelAwareSPIFactory().getKernelProvidedSPI(
- managerName, DeploymentAspectManager.class
- );
- }
-}
Deleted:
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointDeployerLifecycleDeploymentAspect.java
===================================================================
---
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointDeployerLifecycleDeploymentAspect.java 2008-11-04
05:54:16 UTC (rev 8645)
+++
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointDeployerLifecycleDeploymentAspect.java 2008-11-04
05:58:06 UTC (rev 8646)
@@ -1,43 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, 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.wsf.framework.deployment;
-
-import org.jboss.wsf.spi.deployment.Deployment;
-
-/**
- * Lifecycle deployer handler dealing with CREATE and DESTROY only
- * @author richard.opalka(a)jboss.com
- */
-public class EndpointDeployerLifecycleDeploymentAspect extends
EndpointLifecycleDeploymentAspect
-{
- @Override
- public void start(Deployment dep)
- {
- // do nothing in deployers
- }
-
- @Override
- public void stop(Deployment dep)
- {
- // do nothing in deployers
- }
-}
Deleted:
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/IdentityDeploymentAspect.java
===================================================================
---
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/IdentityDeploymentAspect.java 2008-11-04
05:54:16 UTC (rev 8645)
+++
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/IdentityDeploymentAspect.java 2008-11-04
05:58:06 UTC (rev 8646)
@@ -1,60 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, 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.wsf.framework.deployment;
-
-import org.jboss.wsf.spi.deployment.Deployment;
-import org.jboss.wsf.spi.deployment.DeploymentAspect;
-
-/**
- * Identity deployment aspect that does nothing
- *
- * @author richard.opalka(a)jboss.org
- * @since 30-May-2008
- */
-public final class IdentityDeploymentAspect extends DeploymentAspect
-{
-
- @Override
- public void create(Deployment dep)
- {
- // does nothing
- }
-
- @Override
- public void destroy(Deployment dep)
- {
- // does nothing
- }
-
- @Override
- public void start(Deployment dep)
- {
- // does nothing
- }
-
- @Override
- public void stop(Deployment dep)
- {
- // does nothing
- }
-
-}