|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ChainContribution.java | - | 75% | 75% | 75% |
|
||||||||||||||
| 1 | // Copyright 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.hivemind.lib.chain; | |
| 16 | ||
| 17 | /** | |
| 18 | * A contribution used with {@link org.apache.hivemind.lib.chain.ChainFactory}. | |
| 19 | * | |
| 20 | * @author Howard M. Lewis Ship | |
| 21 | * @since 1.1 | |
| 22 | */ | |
| 23 | public class ChainContribution | |
| 24 | { | |
| 25 | private String _id; | |
| 26 | ||
| 27 | private String _before; | |
| 28 | ||
| 29 | private String _after; | |
| 30 | ||
| 31 | private Object _command; | |
| 32 | ||
| 33 | 1 | public String getAfter() |
| 34 | { | |
| 35 | 1 | return _after; |
| 36 | } | |
| 37 | ||
| 38 | 0 | public void setAfter(String after) |
| 39 | { | |
| 40 | 0 | _after = after; |
| 41 | } | |
| 42 | ||
| 43 | 1 | public String getBefore() |
| 44 | { | |
| 45 | 1 | return _before; |
| 46 | } | |
| 47 | ||
| 48 | 0 | public void setBefore(String before) |
| 49 | { | |
| 50 | 0 | _before = before; |
| 51 | } | |
| 52 | ||
| 53 | 1 | public Object getCommand() |
| 54 | { | |
| 55 | 1 | return _command; |
| 56 | } | |
| 57 | ||
| 58 | 1 | public void setCommand(Object command) |
| 59 | { | |
| 60 | 1 | _command = command; |
| 61 | } | |
| 62 | ||
| 63 | 1 | public String getId() |
| 64 | { | |
| 65 | 1 | return _id; |
| 66 | } | |
| 67 | ||
| 68 | 1 | public void setId(String id) |
| 69 | { | |
| 70 | 1 | _id = id; |
| 71 | } | |
| 72 | } |
|
||||||||||