001    package org.kuali.ole.describe.bo;
002    
003    /**
004     * Created with IntelliJ IDEA.
005     * User: PP7788
006     * Date: 11/21/12
007     * Time: 3:02 PM
008     * To change this template use File | Settings | File Templates.
009     */
010    public class BibResults {
011    
012        private String uuid;
013        private String title;
014        private String author;
015        private String publicationDate;
016    
017        public String getUuid() {
018            return uuid;
019        }
020    
021        public void setUuid(String uuid) {
022            this.uuid = uuid;
023        }
024    
025        public String getTitle() {
026            return title;
027        }
028    
029        public void setTitle(String title) {
030            this.title = title;
031        }
032    
033        public String getAuthor() {
034            return author;
035        }
036    
037        public void setAuthor(String author) {
038            this.author = author;
039        }
040    
041        public String getPublicationDate() {
042            return publicationDate;
043        }
044    
045        public void setPublicationDate(String publicationDate) {
046            this.publicationDate = publicationDate;
047        }
048    }