Subversion Repositories SmartDukaan

Rev

Rev 7286 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.metamodel.core;

import in.shop2020.metamodel.util.MetaModelComponent;

import java.util.Date;

public class ExpertReview  extends MetaModelComponent {
        
        /**
         * 
         */
        private static final long serialVersionUID = 1L;
        public Date getCreatedOn() {
                return createdOn;
        }
        
        private ExpertReviewStatus status;
        
        private Date createdOn;
        private String reviewContent;
        private String url;
        private String source;
        private String createdBy;
        private String approvedBy;
        
        public ExpertReview(Date createdOn) {
                super();
                this.createdOn = createdOn;
        }
        public void setStatus(ExpertReviewStatus status) {
                this.status = status;
        }
        public ExpertReviewStatus getStatus() {
                return status;
        }
        
        public String getReviewContent() {
                return reviewContent;
        }
        public void setReviewContent(String reviewContent) {
                this.reviewContent = reviewContent;
        }
        public String getSource() {
                return source;
        }
        public void setSource(String source) {
                this.source = source;
        }
        public void setCreatedBy(String createdBy) {
                this.createdBy = createdBy;
        }
        public String getCreatedBy() {
                return createdBy;
        }
        public void setApprovedBy(String approvedBy) {
                this.approvedBy = approvedBy;
        }
        public String getApprovedBy() {
                return approvedBy;
        }
        public void setUrl(String url) {
                this.url = url;
        }
        public String getUrl() {
                return url;
        }
        
        
}