]> source.dussan.org Git - archiva.git/blob
b3bc509307ef921bef256fb86a5ef81a7b277fb9
[archiva.git] /
1 package org.apache.archiva.rest.api.model.v2;
2 /*
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
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19
20 import io.swagger.v3.oas.annotations.media.Schema;
21 import org.apache.archiva.scheduler.indexing.ArtifactIndexingTask;
22 import org.apache.archiva.scheduler.repository.model.RepositoryTask;
23
24 import java.io.Serializable;
25
26 /**
27  * @author Martin Stockhammer <martin_s@apache.org>
28  */
29 @Schema(name="IndexingTask",description = "Information about indexing tasks")
30 public class IndexingTask implements Serializable
31 {
32     private static final long serialVersionUID = -1947200162602613310L;
33     private String repositoryId = "";
34     private boolean fullRepository;
35     private boolean updateOnly;
36     private String resource = "";
37     private boolean running = false;
38     private long maxExecutionTimeMs = 0;
39
40     public static IndexingTask of( org.apache.archiva.admin.model.beans.IndexingTask repositoryTask ) {
41         IndexingTask indexingTask = new IndexingTask( );
42         indexingTask.setFullRepository( repositoryTask.isFullScan());
43         indexingTask.setUpdateOnly( repositoryTask.isUpdateOnly() );
44         indexingTask.setResource( repositoryTask.getResource() );
45         indexingTask.setMaxExecutionTimeMs( repositoryTask.getMaxExecutionTimeMs() );
46         indexingTask.setRepositoryId( repositoryTask.getRepositoryId() );
47         return indexingTask;
48     }
49
50     @Schema(name="repository_id",description = "Identifier of the repository this task is running on")
51     public String getRepositoryId( )
52     {
53         return repositoryId;
54     }
55
56     public void setRepositoryId( String repositoryId )
57     {
58         this.repositoryId = repositoryId==null?"":repositoryId;
59     }
60
61     @Schema( name = "full_repository", description = "True, if this is a full repository index scan" )
62     public boolean isFullRepository( )
63     {
64         return fullRepository;
65     }
66
67     public void setFullRepository( boolean fullRepository )
68     {
69         this.fullRepository = fullRepository;
70     }
71
72     @Schema(name="update_only", description = "True, if this is only updating the index with new files")
73     public boolean isUpdateOnly( )
74     {
75         return updateOnly;
76     }
77
78     public void setUpdateOnly( boolean updateOnly )
79     {
80         this.updateOnly = updateOnly;
81     }
82
83     @Schema(name="resource",description = "The resource that should be updated, if this is not a full repo update")
84     public String getResource( )
85     {
86         return resource;
87     }
88
89     public void setResource( String resource )
90     {
91         this.resource = resource == null ? "" : resource;
92     }
93
94     @Schema(name="running", description = "True, if this task is currently running")
95     public boolean isRunning( )
96     {
97         return running;
98     }
99
100     public void setRunning( boolean running )
101     {
102         this.running = running;
103     }
104
105     @Schema(name="max_execution_time_ms",description = "Maximum task execution time in ms")
106     public long getMaxExecutionTimeMs( )
107     {
108         return maxExecutionTimeMs;
109     }
110
111     public void setMaxExecutionTimeMs( long maxExecutionTimeMs )
112     {
113         this.maxExecutionTimeMs = maxExecutionTimeMs;
114     }
115
116     @Override
117     public boolean equals( Object o )
118     {
119         if ( this == o ) return true;
120         if ( o == null || getClass( ) != o.getClass( ) ) return false;
121
122         IndexingTask that = (IndexingTask) o;
123
124         if ( fullRepository != that.fullRepository ) return false;
125         if ( updateOnly != that.updateOnly ) return false;
126         if ( running != that.running ) return false;
127         if ( maxExecutionTimeMs != that.maxExecutionTimeMs ) return false;
128         if ( !repositoryId.equals( that.repositoryId ) ) return false;
129         return resource.equals( that.resource );
130     }
131
132     @Override
133     public int hashCode( )
134     {
135         int result = repositoryId.hashCode( );
136         result = 31 * result + ( fullRepository ? 1 : 0 );
137         result = 31 * result + ( updateOnly ? 1 : 0 );
138         result = 31 * result + resource.hashCode( );
139         result = 31 * result + ( running ? 1 : 0 );
140         result = 31 * result + (int) ( maxExecutionTimeMs ^ ( maxExecutionTimeMs >>> 32 ) );
141         return result;
142     }
143
144     @Override
145     public String toString( )
146     {
147         final StringBuilder sb = new StringBuilder( "IndexingTask{" );
148         sb.append( "repositoryId='" ).append( repositoryId ).append( '\'' );
149         sb.append( ", fullRepository=" ).append( fullRepository );
150         sb.append( ", updateOnly=" ).append( updateOnly );
151         sb.append( ", resource='" ).append( resource ).append( '\'' );
152         sb.append( ", running=" ).append( running );
153         sb.append( ", maxExecutionTimeMs=" ).append( maxExecutionTimeMs );
154         sb.append( '}' );
155         return sb.toString( );
156     }
157
158 }