]> source.dussan.org Git - archiva.git/commitdiff
remove no more use beans : see previous commit
authorOlivier Lamy <olamy@apache.org>
Fri, 9 Sep 2011 14:41:48 +0000 (14:41 +0000)
committerOlivier Lamy <olamy@apache.org>
Fri, 9 Sep 2011 14:41:48 +0000 (14:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1167225 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-repository-admin/src/main/java/org/apache/archiva/admin/repository/admin/RepositoryScanning.java [deleted file]
archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/model/RepositoryScanning.java [deleted file]
archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/admin/scanning/RepositoryScanningAction.java

diff --git a/archiva-modules/archiva-base/archiva-repository-admin/src/main/java/org/apache/archiva/admin/repository/admin/RepositoryScanning.java b/archiva-modules/archiva-base/archiva-repository-admin/src/main/java/org/apache/archiva/admin/repository/admin/RepositoryScanning.java
deleted file mode 100644 (file)
index 7a91b89..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-package org.apache.archiva.admin.repository.admin;
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * @author Olivier Lamy
- */
-public class RepositoryScanning
-    implements Serializable
-{
-    /**
-     * Field fileTypes.
-     */
-    private List<FileType> fileTypes;
-
-    /**
-     * Field knownContentConsumers.
-     */
-    private List<String> knownContentConsumers;
-
-    /**
-     * Field invalidContentConsumers.
-     */
-    private List<String> invalidContentConsumers;
-
-    public RepositoryScanning()
-    {
-        // no op
-    }
-
-    public RepositoryScanning( List<FileType> fileTypes, List<String> knownContentConsumers,
-                               List<String> invalidContentConsumers )
-    {
-        this.fileTypes = fileTypes;
-        this.knownContentConsumers = knownContentConsumers;
-        this.invalidContentConsumers = invalidContentConsumers;
-    }
-
-    public List<FileType> getFileTypes()
-    {
-        if ( this.fileTypes == null )
-        {
-            this.fileTypes = new ArrayList<FileType>();
-        }
-        return fileTypes;
-    }
-
-    public void setFileTypes( List<FileType> fileTypes )
-    {
-        this.fileTypes = fileTypes;
-    }
-
-    public List<String> getKnownContentConsumers()
-    {
-        if ( this.knownContentConsumers == null )
-        {
-            this.knownContentConsumers = new ArrayList<String>();
-        }
-        return knownContentConsumers;
-    }
-
-    public void setKnownContentConsumers( List<String> knownContentConsumers )
-    {
-        this.knownContentConsumers = knownContentConsumers;
-    }
-
-    public List<String> getInvalidContentConsumers()
-    {
-        if ( this.invalidContentConsumers == null )
-        {
-            this.invalidContentConsumers = new ArrayList<String>();
-        }
-        return invalidContentConsumers;
-    }
-
-    public void setInvalidContentConsumers( List<String> invalidContentConsumers )
-    {
-        this.invalidContentConsumers = invalidContentConsumers;
-    }
-}
diff --git a/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/model/RepositoryScanning.java b/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/model/RepositoryScanning.java
deleted file mode 100644 (file)
index 870b9c3..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-package org.apache.archiva.rest.api.model;
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-
-import javax.xml.bind.annotation.XmlRootElement;
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * @author Olivier Lamy
- */
-@XmlRootElement( name = "repositoryScanning" )
-public class RepositoryScanning
-    implements Serializable
-{
-    /**
-     * Field fileTypes.
-     */
-    private List<FileType> fileTypes;
-
-    /**
-     * Field knownContentConsumers.
-     */
-    private List<String> knownContentConsumers;
-
-    /**
-     * Field invalidContentConsumers.
-     */
-    private List<String> invalidContentConsumers;
-
-    public RepositoryScanning()
-    {
-        // no op
-    }
-
-    public RepositoryScanning( List<FileType> fileTypes, List<String> knownContentConsumers,
-                               List<String> invalidContentConsumers )
-    {
-        this.fileTypes = fileTypes;
-        this.knownContentConsumers = knownContentConsumers;
-        this.invalidContentConsumers = invalidContentConsumers;
-    }
-
-    public List<FileType> getFileTypes()
-    {
-        if ( this.fileTypes == null )
-        {
-            this.fileTypes = new ArrayList<FileType>();
-        }
-        return fileTypes;
-    }
-
-    public void setFileTypes( List<FileType> fileTypes )
-    {
-        this.fileTypes = fileTypes;
-    }
-
-    public List<String> getKnownContentConsumers()
-    {
-        if ( this.knownContentConsumers == null )
-        {
-            this.knownContentConsumers = new ArrayList<String>();
-        }
-        return knownContentConsumers;
-    }
-
-    public void setKnownContentConsumers( List<String> knownContentConsumers )
-    {
-        this.knownContentConsumers = knownContentConsumers;
-    }
-
-    public List<String> getInvalidContentConsumers()
-    {
-        if ( this.invalidContentConsumers == null )
-        {
-            this.invalidContentConsumers = new ArrayList<String>();
-        }
-        return invalidContentConsumers;
-    }
-
-    public void setInvalidContentConsumers( List<String> invalidContentConsumers )
-    {
-        this.invalidContentConsumers = invalidContentConsumers;
-    }
-
-    @Override
-    public String toString()
-    {
-        final StringBuilder sb = new StringBuilder();
-        sb.append( "RepositoryScanning" );
-        sb.append( "{fileTypes=" ).append( fileTypes );
-        sb.append( ", knownContentConsumers=" ).append( knownContentConsumers );
-        sb.append( ", invalidContentConsumers=" ).append( invalidContentConsumers );
-        sb.append( '}' );
-        return sb.toString();
-    }
-}
index 29f122b04e2eb8f68bfa0a6367f4705d4e606972..c61810965b50e0e6f75049eb9b6459bffa82901f 100644 (file)
@@ -25,7 +25,6 @@ import org.apache.archiva.admin.repository.RepositoryAdminException;
 import org.apache.archiva.admin.repository.admin.ArchivaAdministration;
 import org.apache.archiva.admin.repository.admin.FileType;
 import org.apache.archiva.admin.repository.admin.FiletypeToMapClosure;
-import org.apache.archiva.admin.repository.admin.RepositoryScanning;
 import org.apache.archiva.audit.Auditable;
 import org.apache.archiva.repository.scanner.RepositoryContentConsumers;
 import org.apache.archiva.security.common.ArchivaRoleConstants;