summaryrefslogtreecommitdiffstats
blob: 9e651a590a8538e396ed8aa5e6e3103818683d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
 * Copyright (c) 2014 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.elements;

import com.isode.stroke.elements.Payload;

public class UserTune extends Payload {

	private Integer rating;
	private String title;
	private String track;
	private String artist;
	private String uri;
	private String source;
	private Integer length;

	/**
	* Default Constructor.
	*/
	public UserTune() {

	}

	/**
	* @return rating.
	*/
	public Integer getRating() {
		return rating;
	}

	/**
	* @param rating.
	*/
	public void setRating(Integer value) {
		this.rating = value;
	}

	/**
	* @return title.
	*/
	public String getTitle() {
		return title;
	}

	/**
	* @param title.
	*/
	public void setTitle(String value) {
		this.title = value;
	}

	/**
	* @return track.
	*/
	public String getTrack() {
		return track;
	}

	/**
	* @param track.
	*/
	public void setTrack(String value) {
		this.track = value;
	}

	/**
	* @return artist.
	*/
	public String getArtist() {
		return artist;
	}

	/**
	* @param artist.
	*/
	public void setArtist(String value) {
		this.artist = value;
	}	

	/**
	* @return URI.
	*/
	public String getURI() {
		return uri;
	}

	/**
	* @param URI.
	*/
	public void setURI(String value) {
		this.uri = value;
	}

	/**
	* @return source.
	*/
	public String getSource() {
		return source;
	}

	/**
	* @param source.
	*/
	public void setSource(String value) {
		this.source = value;
	}

	/**
	* @return length.
	*/
	public Integer getLength() {
		return length;
	}

	/**
	* @param length.
	*/
	public void setLength(Integer value) {
		this.length = value;
	}
}