[jboss-cvs] JBossAS SVN: r104392 - in trunk/system/src/main/java/org/jboss/system/server: profileservice and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon May 3 05:26:27 EDT 2010
Author: emuckenhuber
Date: 2010-05-03 05:26:27 -0400 (Mon, 03 May 2010)
New Revision: 104392
Removed:
trunk/system/src/main/java/org/jboss/system/server/profile/repository/metadata/
trunk/system/src/main/java/org/jboss/system/server/profileservice/BootstrapDeployment.java
trunk/system/src/main/java/org/jboss/system/server/profileservice/SecurityActions.java
trunk/system/src/main/java/org/jboss/system/server/profileservice/attachments/
Log:
cleanup
Deleted: trunk/system/src/main/java/org/jboss/system/server/profileservice/BootstrapDeployment.java
===================================================================
--- trunk/system/src/main/java/org/jboss/system/server/profileservice/BootstrapDeployment.java 2010-05-03 06:59:11 UTC (rev 104391)
+++ trunk/system/src/main/java/org/jboss/system/server/profileservice/BootstrapDeployment.java 2010-05-03 09:26:27 UTC (rev 104392)
@@ -1,84 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * by the @authors tag. See the copyright.txt 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.system.server.profileservice;
-
-import org.jboss.deployers.plugins.attachments.AttachmentsImpl;
-import org.jboss.deployers.plugins.structure.ContextInfoImpl;
-import org.jboss.deployers.plugins.structure.StructureMetaDataImpl;
-import org.jboss.deployers.spi.DeploymentState;
-import org.jboss.deployers.spi.management.KnownDeploymentTypes;
-import org.jboss.deployers.spi.structure.ContextInfo;
-import org.jboss.deployers.spi.structure.StructureMetaData;
-import org.jboss.deployers.structure.spi.DeploymentContext;
-import org.jboss.deployers.structure.spi.DeploymentUnit;
-import org.jboss.deployers.structure.spi.helpers.AbstractDeploymentContext;
-import org.jboss.deployers.structure.spi.helpers.AbstractDeploymentUnit;
-import org.jboss.kernel.spi.deployment.KernelDeployment;
-
-/**
- * A DeploymentUnit for exposing the MCServer deployments
- *
- * @see org.jboss.bootstrap.spi.microcontainer.MCServer#getDeployments
- *
- * @author Scott.Stark at jboss.org
- * @version $Revision$
- */
-public class BootstrapDeployment extends AbstractDeploymentUnit
- implements DeploymentUnit
-{
- private static final long serialVersionUID = 1;
- private AttachmentsImpl predeterminedManagedObjects = new AttachmentsImpl();
- private transient KernelDeployment deployment;
-
- public BootstrapDeployment(KernelDeployment deployment)
- {
- super(new AbstractDeploymentContext(deployment.getName(), ""));
- this.deployment = deployment;
- // Create a pre-determined, DEPLOYED deployment
- StructureMetaData structure = new StructureMetaDataImpl();
- ContextInfo rootInfo = new ContextInfoImpl("");
- structure.addContext(rootInfo);
- predeterminedManagedObjects.addAttachment(KnownDeploymentTypes.class, KnownDeploymentTypes.MCBeans);
- predeterminedManagedObjects.addAttachment(StructureMetaData.class, structure);
- predeterminedManagedObjects.addAttachment(KernelDeployment.class, deployment);
- DeploymentContext rootContext = getDeploymentContext();
- rootContext.setState(DeploymentState.DEPLOYED);
- predeterminedManagedObjects.addAttachment(DeploymentContext.class, rootContext);
- rootContext.setPredeterminedManagedObjects(predeterminedManagedObjects);
- }
-
- public String getName()
- {
- return deployment.getName();
- }
-
- public String getSimpleName()
- {
- String name = deployment.getName();
- int slash = name.lastIndexOf('/');
- if(slash > 0)
- name = name.substring(slash+1);
- return name;
- }
-
-
-}
Deleted: trunk/system/src/main/java/org/jboss/system/server/profileservice/SecurityActions.java
===================================================================
--- trunk/system/src/main/java/org/jboss/system/server/profileservice/SecurityActions.java 2010-05-03 06:59:11 UTC (rev 104391)
+++ trunk/system/src/main/java/org/jboss/system/server/profileservice/SecurityActions.java 2010-05-03 09:26:27 UTC (rev 104392)
@@ -1,46 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, 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.system.server.profileservice;
-
-import java.security.PrivilegedAction;
-import java.security.AccessController;
-
-/**
- * Package privileged actions.
- *
- * @author Scott.Stark at jboss.org
- * @version $Revision$
- */
-class SecurityActions
-{
- static String getSystemProperty(final String name, final String defaultValue)
- {
- PrivilegedAction<String> action = new PrivilegedAction<String>()
- {
- public String run()
- {
- return System.getProperty(name, defaultValue);
- }
- };
- return AccessController.doPrivileged(action);
- }
-}
More information about the jboss-cvs-commits
mailing list