001/**
002 * Copyright 2005-2018 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.labs.exclusion;
017
018/**
019 * Data object for supporting a collection for {@link LabsExclusionForm}.
020 *
021 * @author Kuali Rice Team (rice.collab@kuali.org)
022 */
023public class ExclusionDO {
024
025        private String foo;
026        private String bar;
027        private String baz;
028        
029        /**
030         * Gets the foo property.
031         * 
032         * @return property value
033         */
034        public String getFoo() {
035                return foo;
036        }
037        
038        /**
039         * @see #getFoo()
040         */
041        public void setFoo(String foo) {
042                this.foo = foo;
043        }
044        
045        /**
046         * Gets the bar property.
047         * 
048         * @return property value
049         */
050        public String getBar() {
051                return bar;
052        }
053        
054        /**
055         * @see #getBar()
056         */
057        public void setBar(String bar) {
058                this.bar = bar;
059        }
060        
061        /**
062         * Gets the baz property.
063         * 
064         * @return property value
065         */
066        public String getBaz() {
067                return baz;
068        }
069        
070        /**
071         * @see #getBaz()
072         */
073        public void setBaz(String baz) {
074                this.baz = baz;
075        }
076        
077}