getDomain method
Implementation
String getDomain() {
switch (this) {
case SessionTypes.APPLE:
return "apple.com";
case SessionTypes.GOOGLE:
return "google.com";
case SessionTypes.FACEBOOK:
return "facebook.com";
default:
return "";
}
}