1 package org.kuali.ole.sys.batch;
2
3
4 import org.apache.commons.beanutils.PropertyUtils;
5
6 /**
7 * The specification for a business object which should be parsed into during the parsing of a flat file
8 */
9 public class FlatFilePrefixObjectSpecification extends AbstractFlatFileObjectSpecification {
10
11 protected String linePrefix;
12 /**
13 * @return the prefix of the line which determines if the given line should be associated with this object specification
14 */
15 public String getLinePrefix() {
16 return linePrefix;
17 }
18
19 /**
20 * Sets the prefix that configures which lines this object specification will be associated with
21 * @param linePrefix the prefix
22 */
23 public void setLinePrefix(String linePrefix) {
24 this.linePrefix = linePrefix;
25 }
26 }