]> source.dussan.org Git - archiva.git/blob
5b46bf64f79c3e85557d2e4f3383c12979a6d711
[archiva.git] /
1 package org.apache.maven.archiva.database.updater;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.commons.collections.Closure;
23 import org.apache.maven.archiva.consumers.ArchivaArtifactConsumer;
24 import org.apache.maven.archiva.consumers.ConsumerException;
25 import org.apache.maven.archiva.model.ArchivaArtifact;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 /**
30  * ProcessArchivaArtifactClosure 
31  *
32  * @version $Id$
33  */
34 class ProcessArchivaArtifactClosure
35     implements Closure
36 {
37     private Logger log = LoggerFactory.getLogger( ProcessArchivaArtifactClosure.class );
38     
39     private ArchivaArtifact artifact;
40
41     public void execute( Object input )
42     {
43         if ( input instanceof ArchivaArtifactConsumer )
44         {
45             ArchivaArtifactConsumer consumer = (ArchivaArtifactConsumer) input;
46
47             try
48             {
49                 consumer.processArchivaArtifact( artifact );
50             }
51             catch ( ConsumerException e )
52             {
53                 log.warn( "Unable to process artifact [" + artifact + "] with consumer [" + consumer.getId() + "]", e );
54             }
55         }
56
57     }
58
59     public ArchivaArtifact getArtifact()
60     {
61         return artifact;
62     }
63
64     public void setArtifact( ArchivaArtifact artifact )
65     {
66         this.artifact = artifact;
67     }
68 }