View Javadoc

1   // Copyright (c) 2003, Chad Woolley, All rights reserved.
2   
3   package org.virtualmock.configuration;
4   
5   /***
6    * Configuration for a VirtualMock Rule.
7    *
8    * @author Chad Woolley
9    * @version $Revision: 1.2 $
10   */
11  public class RuleConfig {
12      private String ruleType = null;
13  
14      /***
15       * Accessor.
16       *
17       * @param ruleType The ruleType to set.
18       */
19      public void setRuleType(String ruleType) {
20          this.ruleType = ruleType;
21      }
22  
23      /***
24       * Accessor.
25       *
26       * @return Returns the ruleType.
27       */
28      public String getRuleType() {
29          return ruleType;
30      }
31  	public RuleConfig() {
32  		super();
33  		// TODO Auto-generated constructor stub
34  	}
35  
36  }