/* * Copyright (c) 2015 EMC Corporation * All Rights Reserved */ package com.emc.vipr.model.catalog; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "user_preferences_update") public class UserPreferencesUpdateParam { private String username; private Boolean notifyByEmail; private String email; @XmlElement(name = "notify_by_email") public Boolean getNotifyByEmail() { return notifyByEmail; } public void setNotifyByEmail(Boolean notifyByEmail) { this.notifyByEmail = notifyByEmail; } @XmlElement(name = "email") public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } @XmlElement(name = "username") public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } }