[jboss-cvs] JBossAS SVN: r88577 - branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat May 9 09:25:16 EDT 2009


Author: emuckenhuber
Date: 2009-05-09 09:25:16 -0400 (Sat, 09 May 2009)
New Revision: 88577

Removed:
   branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/DefaultManagedObjectPlugin.java
Modified:
   branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/ManagedObjectRemoveHandler.java
Log:
rename default persistence plugin class.

Deleted: branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/DefaultManagedObjectPlugin.java
===================================================================
--- branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/DefaultManagedObjectPlugin.java	2009-05-09 13:23:47 UTC (rev 88576)
+++ branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/DefaultManagedObjectPlugin.java	2009-05-09 13:25:16 UTC (rev 88577)
@@ -1,62 +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.persistence;
-
-import org.jboss.managed.api.ManagedObject;
-import org.jboss.system.server.profileservice.persistence.xml.PersistedManagedObject;
-
-/**
- * @author <a href="mailto:emuckenh at redhat.com">Emanuel Muckenhuber</a>
- * @version $Revision$
- */
-public class DefaultManagedObjectPlugin extends AbstractManagedObjectPersistencePlugin
-{
- 
-   public DefaultManagedObjectPlugin()
-   {
-      //
-   }
-   
-   public DefaultManagedObjectPlugin(AbstractValuePersistence valuePersistence)
-   {
-      setValuePersistence(valuePersistence);
-   }
-   
-   @Override
-   public String getType()
-   {
-      return Object.class.getName();
-   }
-   
-   @Override
-   public PersistedManagedObject createPersistedManagedObject(PersistedManagedObject persisted, ManagedObject mo)
-   {
-      // Create the persisted information
-      persisted = super.createPersistedManagedObject(persisted, mo);
-      // Process the properties
-      processProperties(persisted, mo);
-      // Return
-      return persisted;
-   }
-
-}
-

Modified: branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/ManagedObjectRemoveHandler.java
===================================================================
--- branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/ManagedObjectRemoveHandler.java	2009-05-09 13:23:47 UTC (rev 88576)
+++ branches/Branch_5_x/system/src/main/org/jboss/system/server/profileservice/persistence/ManagedObjectRemoveHandler.java	2009-05-09 13:25:16 UTC (rev 88577)
@@ -54,7 +54,7 @@
       return this.plugin;
    }
 
-   public class RemovePlugin extends DefaultManagedObjectPlugin
+   public class RemovePlugin extends DefaultPersistencePlugin
    {
       
       @Override




More information about the jboss-cvs-commits mailing list