|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ServiceEncoderContribution.java | - | 75% | 75% | 75% |
|
1 |
// Copyright 2004, 2005 The Apache Software Foundation
|
|
2 |
//
|
|
3 |
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4 |
// you may not use this file except in compliance with the License.
|
|
5 |
// You may obtain a copy of the License at
|
|
6 |
//
|
|
7 |
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8 |
//
|
|
9 |
// Unless required by applicable law or agreed to in writing, software
|
|
10 |
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11 |
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12 |
// See the License for the specific language governing permissions and
|
|
13 |
// limitations under the License.
|
|
14 |
|
|
15 |
package org.apache.tapestry.services.impl;
|
|
16 |
|
|
17 |
import org.apache.hivemind.impl.BaseLocatable;
|
|
18 |
import org.apache.tapestry.engine.ServiceEncoder;
|
|
19 |
|
|
20 |
/**
|
|
21 |
* A contribution to the tapestry.url.ServiceEncoders configuration point, identifying some number
|
|
22 |
* of {@link org.apache.tapestry.engine.ServiceEncoder}s, as well as the ordering of those
|
|
23 |
* encoders.
|
|
24 |
*
|
|
25 |
* @author Howard M. Lewis Ship
|
|
26 |
*/
|
|
27 |
public class ServiceEncoderContribution extends BaseLocatable |
|
28 |
{ |
|
29 |
private String _id;
|
|
30 |
|
|
31 |
private String _before;
|
|
32 |
|
|
33 | 4 |
public String getAfter()
|
34 |
{ |
|
35 | 4 |
return _after;
|
36 |
} |
|
37 |
|
|
38 | 0 |
public void setAfter(String after) |
39 |
{ |
|
40 | 0 |
_after = after; |
41 |
} |
|
42 |
|
|
43 | 4 |
public String getBefore()
|
44 |
{ |
|
45 | 4 |
return _before;
|
46 |
} |
|
47 |
|
|
48 | 0 |
public void setBefore(String before) |
49 |
{ |
|
50 | 0 |
_before = before; |
51 |
} |
|
52 |
|
|
53 | 4 |
public ServiceEncoder getEncoder()
|
54 |
{ |
|
55 | 4 |
return _encoder;
|
56 |
} |
|
57 |
|
|
58 | 4 |
public void setEncoder(ServiceEncoder encoder) |
59 |
{ |
|
60 | 4 |
_encoder = encoder; |
61 |
} |
|
62 |
|
|
63 | 4 |
public String getId()
|
64 |
{ |
|
65 | 4 |
return _id;
|
66 |
} |
|
67 |
|
|
68 | 4 |
public void setId(String id) |
69 |
{ |
|
70 | 4 |
_id = id; |
71 |
} |
|
72 |
|
|
73 |
private String _after;
|
|
74 |
|
|
75 |
private ServiceEncoder _encoder;
|
|
76 |
} |
|