]> source.dussan.org Git - archiva.git/blob
28443863729c2ed214611926d0d807ad6be54daa
[archiva.git] /
1 package org.apache.archiva.redback.struts2.interceptor;
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 com.opensymphony.xwork2.ActionInvocation;
23 import com.opensymphony.xwork2.interceptor.Interceptor;
24 import org.springframework.stereotype.Service;
25
26 import javax.inject.Inject;
27
28 /**
29  * @author <a href='mailto:rahul.thakur.xdev@gmail.com'>Rahul Thakur</a>
30  */
31 @Service( "testCustomInterceptor" )
32 public class MockCustomInterceptor
33     implements Interceptor
34 {
35     /**
36      *
37      */
38     @Inject
39     private MockComponent testComponent;
40
41     public MockCustomInterceptor()
42     {
43     }
44
45     public MockCustomInterceptor( MockComponent testComponent )
46     {
47         this.testComponent = testComponent;
48     }
49
50     /* (non-Javadoc)
51      * @see com.opensymphony.xwork2.interceptor.Interceptor#destroy()
52      */
53     public void destroy()
54     {
55         // do nothing
56     }
57
58     /* (non-Javadoc)
59      * @see com.opensymphony.xwork2.interceptor.Interceptor#init()
60      */
61     public void init()
62     {
63         // do nothing
64     }
65
66     /**
67      * @noinspection ProhibitedExceptionDeclared
68      */
69     public String intercept( ActionInvocation invocation )
70         throws Exception
71     {
72         String result = "Hello Custom Interceptor";
73
74         testComponent.displayResult( result );
75
76         return result;
77     }
78
79     public MockComponent getTestComponent()
80     {
81         return testComponent;
82     }
83
84     // Introduce a Composition Exception , see PLX - 278 
85     //    public void setTestComponent( MockComponent testComponent )
86     //    {
87     //        this.testComponent = testComponent;
88     //    }
89
90 }