From do-not-reply at jboss.org Wed Feb 29 09:34:47 2012 Content-Type: multipart/mixed; boundary="===============5949824554373792588==" MIME-Version: 1.0 From: do-not-reply at jboss.org To: gatein-commits at lists.jboss.org Subject: [gatein-commits] gatein SVN: r8492 - portal/trunk/packaging/jboss-as7/extension/src/main/java/org/gatein/integration/jboss/as7. Date: Wed, 29 Feb 2012 09:34:46 -0500 Message-ID: <201202291434.q1TEYkoY006293@svn01.web.mwc.hst.phx2.redhat.com> --===============5949824554373792588== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: mstruk Date: 2012-02-29 09:34:46 -0500 (Wed, 29 Feb 2012) New Revision: 8492 Added: portal/trunk/packaging/jboss-as7/extension/src/main/java/org/gatein/inte= gration/jboss/as7/GateInCleanupDeploymentProcessor.java Log: GTNPORTAL-2154 Support for JBoss AS7 - fixed broken build Added: portal/trunk/packaging/jboss-as7/extension/src/main/java/org/gatein/= integration/jboss/as7/GateInCleanupDeploymentProcessor.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- portal/trunk/packaging/jboss-as7/extension/src/main/java/org/gatein/int= egration/jboss/as7/GateInCleanupDeploymentProcessor.java = (rev 0) +++ portal/trunk/packaging/jboss-as7/extension/src/main/java/org/gatein/int= egration/jboss/as7/GateInCleanupDeploymentProcessor.java 2012-02-29 14:34:4= 6 UTC (rev 8492) @@ -0,0 +1,55 @@ +/* + * JBoss, Home of Professional Open Source. + * Copyright 2012, Red Hat, Inc., 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.gatein.integration.jboss.as7; + +import org.gatein.integration.jboss.as7.deployment.GateInConfigurationKey; +import org.gatein.integration.jboss.as7.deployment.GateInEarKey; +import org.gatein.integration.jboss.as7.deployment.GateInExtKey; +import org.gatein.integration.jboss.as7.deployment.PortletWarKey; +import org.jboss.as.server.deployment.DeploymentPhaseContext; +import org.jboss.as.server.deployment.DeploymentUnit; +import org.jboss.as.server.deployment.DeploymentUnitProcessingException; +import org.jboss.as.server.deployment.DeploymentUnitProcessor; + +/** + * @author Marko Strukelj + */ +public class GateInCleanupDeploymentProcessor implements DeploymentUnitPro= cessor +{ + @Override + public void deploy(DeploymentPhaseContext phaseContext) throws Deployme= ntUnitProcessingException + { + final DeploymentUnit du =3D phaseContext.getDeploymentUnit(); + Object config =3D du.removeAttachment(GateInConfigurationKey.KEY); + if (config !=3D null) + { + du.removeAttachment(PortletWarKey.INSTANCE); + du.removeAttachment(GateInEarKey.KEY); + du.removeAttachment(GateInExtKey.KEY); + } + } + + @Override + public void undeploy(DeploymentUnit context) + { + } +} --===============5949824554373792588==--