Coverage Report - org.apache.tapestry.services.impl.ServiceEncoderContribution
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceEncoderContribution
0%
0/13
N/A
1
 
 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  0
 public class ServiceEncoderContribution extends BaseLocatable
 28  
 {
 29  
     private String _id;
 30  
 
 31  
     private String _before;
 32  
 
 33  
     private String _after;
 34  
 
 35  
     private ServiceEncoder _encoder;
 36  
     
 37  
     public String getAfter()
 38  
     {
 39  0
         return _after;
 40  
     }
 41  
 
 42  
     public void setAfter(String after)
 43  
     {
 44  0
         _after = after;
 45  0
     }
 46  
 
 47  
     public String getBefore()
 48  
     {
 49  0
         return _before;
 50  
     }
 51  
 
 52  
     public void setBefore(String before)
 53  
     {
 54  0
         _before = before;
 55  0
     }
 56  
 
 57  
     public ServiceEncoder getEncoder()
 58  
     {
 59  0
         return _encoder;
 60  
     }
 61  
 
 62  
     public void setEncoder(ServiceEncoder encoder)
 63  
     {
 64  0
         _encoder = encoder;
 65  0
     }
 66  
 
 67  
     public String getId()
 68  
     {
 69  0
         return _id;
 70  
     }
 71  
 
 72  
     public void setId(String id)
 73  
     {
 74  0
         _id = id;
 75  0
     }
 76  
 }