KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > services > impl > ServiceEncoderContribution


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 JavaDoc _id;
30
31     private String JavaDoc _before;
32
33     public String JavaDoc getAfter()
34     {
35         return _after;
36     }
37
38     public void setAfter(String JavaDoc after)
39     {
40         _after = after;
41     }
42
43     public String JavaDoc getBefore()
44     {
45         return _before;
46     }
47
48     public void setBefore(String JavaDoc before)
49     {
50         _before = before;
51     }
52
53     public ServiceEncoder getEncoder()
54     {
55         return _encoder;
56     }
57
58     public void setEncoder(ServiceEncoder encoder)
59     {
60         _encoder = encoder;
61     }
62
63     public String JavaDoc getId()
64     {
65         return _id;
66     }
67
68     public void setId(String JavaDoc id)
69     {
70         _id = id;
71     }
72
73     private String JavaDoc _after;
74
75     private ServiceEncoder _encoder;
76 }
Popular Tags