Subversion Repositories SmartDukaan

Rev

Rev 24509 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class ReporticoUrlInfo {
        private String url;
        private String title;
        private String description;
        
        
        public ReporticoUrlInfo(String url, String title, String description) {
                super();
                this.url = url;
                this.title = title;
                this.description = description;
        }
        @Override
        public String toString() {
                return "ReportUrl [url=" + url + ", title=" + title + ", description=" + description + "]";
        }
        public String getUrl() {
                return url;
        }
        public void setUrl(String url) {
                this.url = url;
        }
        public String getTitle() {
                return title;
        }
        public void setTitle(String title) {
                this.title = title;
        }
        public String getDescription() {
                return description;
        }
        public void setDescription(String description) {
                this.description = description;
        }
}