Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35346 ranu 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.util.Objects;
4
 
5
public class VideoUrlsContentPojo {
6
    private String url;
7
 
8
    public VideoUrlsContentPojo(String url) {
9
        this.url = url;
10
    }
11
 
12
    public String getUrl() {
13
        return url;
14
    }
15
 
16
    public void setUrl(String url) {
17
        this.url = url;
18
    }
19
 
20
    @Override
21
    public boolean equals(Object o) {
22
        if (this == o) return true;
23
        if (o == null || getClass() != o.getClass()) return false;
24
        VideoUrlsContentPojo that = (VideoUrlsContentPojo) o;
25
        return Objects.equals(url, that.url);
26
    }
27
 
28
    @Override
29
    public int hashCode() {
30
        return Objects.hash(url);
31
    }
32
 
33
    @Override
34
    public String toString() {
35
        return "VideoUrlsContentPojo{" +
36
                "url='" + url + '\'' +
37
                '}';
38
    }
39
}