001    /*****************************************************************************
002     * Copyright (C) NanoContainer Organization. All rights reserved.            *
003     * ------------------------------------------------------------------------- *
004     * The software in this package is published under the terms of the BSD      *
005     * style license a copy of which has been included with this distribution in *
006     * the LICENSE.txt file.                                                     *
007     *                                                                           *
008     *****************************************************************************/
009    package org.nanocontainer.nanowar.sample.struts;
010    
011    import org.apache.struts.action.ActionForm;
012    
013    /**
014     * @author Stephen Molitor
015     */
016    public class CheeseForm extends ActionForm {
017    
018        private String name;
019        private String country;
020    
021        public String getName() {
022            return name;
023        }
024    
025        public void setName(String name) {
026            this.name = name;
027        }
028    
029        public String getCountry() {
030            return country;
031        }
032    
033        public void setCountry(String country) {
034            this.country = country;
035        }
036    
037    }