-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSite.java
118 lines (97 loc) · 2.27 KB
/
Site.java
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
package com.deange.uwaterlooapi.model.resources;
import android.os.Parcel;
import android.os.Parcelable;
import com.deange.uwaterlooapi.model.BaseModel;
import com.google.gson.annotations.SerializedName;
public class Site
extends BaseModel
implements
Parcelable {
@SerializedName("name")
String mName;
@SerializedName("slug")
String mSlug;
@SerializedName("url")
String mUrl;
@SerializedName("group_code")
String mGroupCode;
@SerializedName("unit_code")
String mUnitCode;
@SerializedName("unit_short_name")
String mUnitShortName;
@SerializedName("owner_type")
String mOwnerType;
protected Site(final Parcel in) {
super(in);
mName = in.readString();
mSlug = in.readString();
mUrl = in.readString();
mGroupCode = in.readString();
mUnitCode = in.readString();
mUnitShortName = in.readString();
mOwnerType = in.readString();
}
@Override
public void writeToParcel(final Parcel dest, final int flags) {
super.writeToParcel(dest, flags);
dest.writeString(mName);
dest.writeString(mSlug);
dest.writeString(mUrl);
dest.writeString(mGroupCode);
dest.writeString(mUnitCode);
dest.writeString(mUnitShortName);
dest.writeString(mOwnerType);
}
public static final Creator<Site> CREATOR = new Creator<Site>() {
@Override
public Site createFromParcel(final Parcel in) {
return new Site(in);
}
@Override
public Site[] newArray(final int size) {
return new Site[size];
}
};
/**
* The name of the site
*/
public String getName() {
return mName;
}
/**
* A url-safe identifier for this site
*/
public String getSlug() {
return mSlug;
}
/**
* A link to the site
*/
public String getUrl() {
return mUrl;
}
/**
* The faculty code (if any) associated with the site
*/
public String getGroupCode() {
return mGroupCode;
}
/**
* The department code (if any) associated with the site
*/
public String getUnitCode() {
return mUnitCode;
}
/**
* The user-friendly name of the department associated with the site
*/
public String getUnitShortName() {
return mUnitShortName;
}
/**
* Identifier for the site owner
*/
public String getOwnerType() {
return mOwnerType;
}
}