1 package org.apache.archiva.rest.api.model;
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License. You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied. See the License for the
17 * specific language governing permissions and limitations
21 import org.apache.archiva.admin.model.beans.ManagedRepository;
23 import javax.xml.bind.annotation.XmlRootElement;
24 import java.io.Serializable;
25 import java.util.List;
28 * @author Olivier Lamy
30 @XmlRootElement( name = "repositoryScannerStatistics" )
31 public class RepositoryScannerStatistics
32 implements Serializable
34 private ManagedRepository managedRepository;
36 private List<ConsumerScanningStatistics> consumerScanningStatistics;
38 private long totalFileCount = 0;
40 private long newFileCount = 0;
42 public RepositoryScannerStatistics()
47 public ManagedRepository getManagedRepository()
49 return managedRepository;
52 public void setManagedRepository( ManagedRepository managedRepository )
54 this.managedRepository = managedRepository;
57 public List<ConsumerScanningStatistics> getConsumerScanningStatistics()
59 return consumerScanningStatistics;
62 public void setConsumerScanningStatistics( List<ConsumerScanningStatistics> consumerScanningStatistics )
64 this.consumerScanningStatistics = consumerScanningStatistics;
67 public long getTotalFileCount()
69 return totalFileCount;
72 public void setTotalFileCount( long totalFileCount )
74 this.totalFileCount = totalFileCount;
77 public long getNewFileCount()
82 public void setNewFileCount( long newFileCount )
84 this.newFileCount = newFileCount;