[Jboss-cvs] JBossAS SVN: r57008 - in trunk/system/src/main/org/jboss: . deployment/scanner system/server

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 20 09:51:45 EDT 2006


Author: adrian at jboss.org
Date: 2006-09-20 09:51:40 -0400 (Wed, 20 Sep 2006)
New Revision: 57008

Removed:
   trunk/system/src/main/org/jboss/deployers/
   trunk/system/src/main/org/jboss/deployment/scanner/VFSDeploymentScanner.java
   trunk/system/src/main/org/jboss/profileservice/
   trunk/system/src/main/org/jboss/system/server/profile/
   trunk/system/src/main/org/jboss/system/server/profileservice/
Log:
Remove the vdf prototype from head.
This will be reintroduced in a more uptodate form when
merged from mc-vdf-work.

Deleted: trunk/system/src/main/org/jboss/deployment/scanner/VFSDeploymentScanner.java
===================================================================
--- trunk/system/src/main/org/jboss/deployment/scanner/VFSDeploymentScanner.java	2006-09-20 13:48:53 UTC (rev 57007)
+++ trunk/system/src/main/org/jboss/deployment/scanner/VFSDeploymentScanner.java	2006-09-20 13:51:40 UTC (rev 57008)
@@ -1,77 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * 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.deployment.scanner;
-
-import org.jboss.vfs.VFSFactory;
-
-/**
- * An interface for a VFS deployment scanner service
- *
- * @version $Revision$
- * @author Scott.Stark at jboss.org
- */
-public interface VFSDeploymentScanner
-{
-   public VFSFactory getVFSFactory();
-   public void setVFSFactory(VFSFactory factory);
-
-   /**
-    * Set the scan period for the scanner.
-    *
-    * @param period - The time in milliseconds between scans.
-    */
-   void setScanPeriod(long period);
-
-   /**
-    * Get the scan period for the scanner.
-    *
-    * @return The time in milliseconds between scans.
-    */
-   long getScanPeriod();
-
-   /**
-    * Set the periodic scan mode enabled/disabled state. Manual scanning can
-    * still be performed by calling {@link #scan}.
-    *
-    * @param flag - true to enable or false to disable period based scanning.
-    */
-   void setScanEnabled(boolean flag);
-
-   /**
-    * Check if period based scanning is enabled.
-    *
-    * @return    True if enabled, false if disabled.
-    */
-   boolean isScanEnabled();
-
-   public int getScanCount();
-   public void resetScanCount();
-
-   /**
-    * Scan for deployment changes.
-    *
-    * @throws IllegalStateException    Not initialized.
-    * @throws Exception                Scan failed.
-    */
-   void scan() throws Exception;
-
-}




More information about the jboss-cvs-commits mailing list