001    package org.kuali.ole.license.bo;
002    
003    import org.kuali.rice.krad.bo.BusinessObjectBase;
004    
005    /**
006     * OleAgreementSearch is the business object class for Agreement Search.
007     */
008    public class OleAgreementSearch extends BusinessObjectBase {
009        /** Stores the agreementTitle*/
010        private String agreementTitle;
011        /** Stores the contractNumber*/
012        private String contractNumber;
013        /** Stores the licensee*/
014        private String licensee;
015        /** Stores the licensor*/
016        private String licensor;
017    
018        private String uniqueId;
019    
020        private String methodName;
021    
022        private String status;
023    
024        private String type;
025    
026        /**
027         *
028         * @return  agreementTitle
029         */
030        public String getAgreementTitle() {
031            return agreementTitle;
032        }
033    
034        public void setAgreementTitle(String agreementTitle) {
035            this.agreementTitle = agreementTitle;
036        }
037    
038        public String getContractNumber() {
039            return contractNumber;
040        }
041    
042        public void setContractNumber(String contractNumber) {
043            this.contractNumber = contractNumber;
044        }
045    
046        public String getLicensee() {
047            return licensee;
048        }
049    
050        public void setLicensee(String licensee) {
051            this.licensee = licensee;
052        }
053    
054        public String getLicensor() {
055            return licensor;
056        }
057    
058        public void setLicensor(String licensor) {
059            this.licensor = licensor;
060        }
061    
062        public String getUniqueId() {
063            return uniqueId;
064        }
065    
066        public void setUniqueId(String uniqueId) {
067            this.uniqueId = uniqueId;
068        }
069    
070        @Override
071        public void refresh() {
072            //To change body of implemented methods use File | Settings | File Templates.
073        }
074    
075        public String getMethodName() {
076            return methodName;
077        }
078    
079        public void setMethodName(String methodName) {
080            this.methodName = methodName;
081        }
082    
083        public String getStatus() {
084            return status;
085        }
086    
087        public void setStatus(String status) {
088            this.status = status;
089        }
090    
091        public String getType() {
092            return type;
093        }
094    
095        public void setType(String type) {
096            this.type = type;
097        }
098    }