Created
March 24, 2015 14:20
-
-
Save madhur/06bbcfe11c0e751ab4df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The persistent class for the user database table. | |
| * | |
| */ | |
| @Entity | |
| @Table(name="user3") | |
| public class User extends Domain<Integer> implements Serializable { | |
| private static final long serialVersionUID = 1L; | |
| @Id | |
| @GeneratedValue(strategy=GenerationType.IDENTITY) | |
| private Integer id; | |
| @Temporal( TemporalType.TIMESTAMP) | |
| @Column(name="created_at") | |
| private Date createdAt; | |
| @Column(name="email") | |
| private String email; | |
| @Column(name="user_access_token") | |
| private String accessToken; | |
| @Column(name="password") | |
| private String password; | |
| @Column(name="name") | |
| private String name; | |
| @Column(name="mobile") | |
| private String mobile; | |
| @Column(name="status") | |
| private byte status; | |
| @Column(name="updated_at") | |
| private Timestamp updatedAt; | |
| @Column(name="user_type") | |
| private byte userType; | |
| @Column (name = "updated_by") | |
| private Integer updatedBy; | |
| //bi-directional many-to-one association to Complaint | |
| @OneToMany(mappedBy="user") | |
| @OrderBy("id desc") | |
| private Set<Complaint> complaints; | |
| //bi-directional one-to-money association to ComplaintDiary | |
| @OneToMany(mappedBy="user") | |
| private Set<ComplaintDiary> complaintDiaries; | |
| @OneToMany(mappedBy="user") | |
| private Set<EmailSent> emailSentSet; | |
| //bi-directional many-to-many association to MacroUsers | |
| @OneToMany(mappedBy="user") | |
| private Set<MacroUser> macroUsers; | |
| //unidirectional one-to-many association to AutomaticProcessActivity | |
| @OneToMany(mappedBy="user", fetch=FetchType.LAZY) | |
| private List<AutomaticProcessActivity> automaticProcessActivities; | |
| @OneToMany(mappedBy = "user") | |
| private Set<BouncedEmail> bouncedEmails; | |
| @OneToMany(mappedBy = "assignedBy") | |
| private Set<Assignment> assignedBy; | |
| @OneToMany(mappedBy = "assignedTo") | |
| private Set<Assignment> assignedTo; | |
| @OneToMany(mappedBy = "user") | |
| private Set<ExotelDetail> exotelDetails; | |
| @OneToMany(mappedBy = "user") | |
| private Set<ExotelSMSDetail> exotelSMSDetails; | |
| // @OneToMany (mappedBy ="user") | |
| // private Set<LinkedInUser> setOfLinkedInUser; | |
| @OneToMany (mappedBy ="user") | |
| private Set<HighPriorityAlertSubscriptions> setOfHighPriorityAlertSubscriptions; | |
| @OneToMany(mappedBy="user", fetch=FetchType.LAZY) | |
| private Set<UserDetails> setOfUserDetails; | |
| @OneToMany(mappedBy="user", fetch=FetchType.LAZY) | |
| private List<FacebookUserDetail> facebookUserDetail; | |
| @OneToMany(mappedBy="user", fetch=FetchType.LAZY) | |
| private Set<UserLoginHistory> setOfUserLoginHistory; | |
| @OneToMany(mappedBy="createdBy", fetch=FetchType.LAZY) | |
| private Set<UserCompany> setOfUserCompanyUpdatedByThisUser; | |
| @OneToMany(mappedBy="user", fetch=FetchType.LAZY) | |
| @OrderBy("id desc") | |
| private Set<UserCompany> setOfUserCompany; | |
| @OneToMany(mappedBy="user", fetch=FetchType.LAZY) | |
| @OrderBy("id desc") | |
| private Set<UserAddress> setOfUserAddress; | |
| @OneToMany(mappedBy="user") | |
| private Set<Payment> setOfPayment; | |
| @OneToMany(mappedBy="updatedBy", fetch=FetchType.LAZY) | |
| private Set<ComplaintPriority> setOfComplaintPriorityUpdatedByThisUser; | |
| @OneToMany(mappedBy="updatedBy", fetch=FetchType.LAZY) | |
| private Set<ComplaintStatus> setOfComplaintStatusUpdatedByThisUser; | |
| @OneToMany(mappedBy="statusFor", fetch=FetchType.LAZY) | |
| private Set<ComplaintStatus> setOfComplaintStatusForThisUser; | |
| @OneToMany(mappedBy="addedBy", fetch=FetchType.LAZY) | |
| private Set<ComplaintTag> setOfComplaintTags; | |
| /*@OneToMany(mappedBy = "createdBy") | |
| private Set<StatusType> setOfStatusType; | |
| @OneToMany(mappedBy = "createdBy") | |
| private Set<StatusValue> setOfStatusValue;*/ | |
| @OneToMany(mappedBy = "createdBy") | |
| private Set<Payment> setOfPaymentCreatedBy; | |
| @OneToMany(mappedBy = "updatedBy") | |
| private Set<ComplaintPricingApplied> setOfComplaintPricingApplied; | |
| @OneToMany(mappedBy = "assignedBy") | |
| private Set<Assignment> setOfAssignmentByThisUser; | |
| @OneToMany(mappedBy = "assignedTo") | |
| private Set<Assignment> setOfAssignmentToThisUser; | |
| @OneToMany(mappedBy = "user") | |
| private Set<MobileAppsUser> appsUsers; | |
| @OneToMany(mappedBy = "user") | |
| private Set<MobileAppsFacebook> appsFacebooks; | |
| @OneToMany(mappedBy = "createdBy") | |
| private Set<MacroCompany> setOfMacroCompanyCreatedBy; | |
| @OneToMany(mappedBy="user") | |
| private Set<CompanyRating> setOfCompanyRating; | |
| @OneToMany(mappedBy="user") | |
| private Set<EmailPreferences> emailPreferences; | |
| @OneToMany(mappedBy="user") | |
| private Set<ExotelCall> users; | |
| @OneToMany(mappedBy="user") | |
| private Set<MoreTeamUser> moreuser; | |
| @OneToMany(mappedBy = "user") | |
| private Set<GoogleMailAuthor> setOfGoogleMailAuthor; | |
| @OneToMany(mappedBy = "user") | |
| private Set<AssignmentThreshold> setOfAssignmentThresholds; | |
| @OneToMany(mappedBy = "user") | |
| private Set<UserCompanyAssignment> setOfUserCompanyAssignment; | |
| @OneToMany(mappedBy = "user") | |
| private Set<PublicCommentDiary> publicCommentDiary; | |
| @OneToMany(mappedBy="user", fetch=FetchType.LAZY) | |
| private Set<AircelCircleContactDetail> setOfAircelCircleContactDetail; | |
| @OneToMany(mappedBy = "retailStoreUser") | |
| private Set<AircelAgentMapping> setOfRetailStoreUser; | |
| @OneToMany(mappedBy = "aircelAgent") | |
| private Set<AircelAgentMapping> setOfAircelAgent; | |
| @OneToMany(mappedBy="user") | |
| private List<UserCompanySourcePriority> userCompanySourcePriorityList; | |
| @OneToMany(mappedBy="updatedBy") | |
| private List<UserCompanySourcePriority> userCompanySourcePriorityCreatedByList; | |
| @OneToMany(mappedBy = "pumaArm") | |
| private Set<PumaRetailARMMapping> setOfARMPumaStoreARMMapping; | |
| @OneToMany(mappedBy = "pumaStoreManager") | |
| private Set<PumaRetailARMMapping> setOfStorePumaStoreARMMapping; | |
| @OneToMany(mappedBy = "pumaCmm") | |
| private Set<PumaRetailCMMMapping> setOfCMMPumaRetailCMMMapping; | |
| @OneToMany(mappedBy = "pumaRrm") | |
| private Set<PumaRetailCMMMapping> setOfRRMPumaRetailCMMMapping; | |
| @OneToMany(mappedBy = "pumaCmm") | |
| private Set<PumaRetailHMMapping> setOfCMMPumaHMMapping; | |
| @OneToMany(mappedBy = "pumaHm") | |
| private Set<PumaRetailHMMapping> setOfHMPumaHMMapping; | |
| @OneToMany(mappedBy = "pumaArm") | |
| private Set<PumaRetailRRMMapping> setOfARMPumaARMRRMMapping; | |
| @OneToMany(mappedBy = "pumaRrm") | |
| private Set<PumaRetailRRMMapping> setOfRRMPumaARMRRMMapping; | |
| @OneToMany(mappedBy = "approvedBy") | |
| private Set<PumaRetailApprovalStatus> setOfPumaRetailApprovalStatus; | |
| @OneToMany(mappedBy = "storeUser") | |
| private Set<PumaRetailStoreNameMapping> setOfPumaRetailStoreNameMapping; | |
| @OneToMany(mappedBy="user") | |
| private Set<CompanyUserLevel> companyUserLevel; | |
| @OneToMany(mappedBy = "level1User") | |
| private Set<PumaRetailComplaintLevelInfo> setOfPumaLevel1; | |
| @OneToMany(mappedBy = "level2User") | |
| private Set<PumaRetailComplaintLevelInfo> setOfPumaLevel2; | |
| @OneToMany(mappedBy = "level3User") | |
| private Set<PumaRetailComplaintLevelInfo> setOfPumaLevel3; | |
| @OneToOne(mappedBy="user", fetch=FetchType.LAZY) | |
| private FullContactDetails fullContactDetails; | |
| public User() { | |
| } | |
| //-------------Start getter/setter----------- | |
| public Integer getId() { | |
| return id; | |
| } | |
| public void setId(Integer id) { | |
| this.id = id; | |
| } | |
| public Date getCreatedAt() { | |
| return createdAt; | |
| } | |
| public void setCreatedAt(Date createdAt) { | |
| this.createdAt = createdAt; | |
| } | |
| public String getEmail() { | |
| return email; | |
| } | |
| public void setEmail(String email) { | |
| this.email = email; | |
| } | |
| public String getAccessToken() { | |
| return accessToken; | |
| } | |
| public void setAccessToken(String accessToken) { | |
| this.accessToken = accessToken; | |
| } | |
| public String getPassword() { | |
| return password; | |
| } | |
| public void setPassword(String password) { | |
| this.password = password; | |
| } | |
| public String getMobile() { | |
| return mobile; | |
| } | |
| public void setMobile(String mobile) { | |
| this.mobile = mobile; | |
| } | |
| public byte getStatus() { | |
| return status; | |
| } | |
| public void setStatus(byte status) { | |
| this.status = status; | |
| } | |
| public Timestamp getUpdatedAt() { | |
| return updatedAt; | |
| } | |
| public void setUpdatedAt(Timestamp updatedAt) { | |
| this.updatedAt = updatedAt; | |
| } | |
| public byte getUserType() { | |
| return userType; | |
| } | |
| public void setUserType(byte userType) { | |
| this.userType = userType; | |
| } | |
| public Set<Complaint> getComplaints() { | |
| return complaints; | |
| } | |
| public void setComplaints(Set<Complaint> complaints) { | |
| this.complaints = complaints; | |
| } | |
| public Set<ComplaintDiary> getComplaintDiaries() { | |
| return complaintDiaries; | |
| } | |
| public void setComplaintDiaries(Set<ComplaintDiary> complaintDiaries) { | |
| this.complaintDiaries = complaintDiaries; | |
| } | |
| public Set<MacroUser> getMacroUsers() { | |
| return macroUsers; | |
| } | |
| public void setMacroUsers(Set<MacroUser> macroUsers) { | |
| this.macroUsers = macroUsers; | |
| } | |
| public List<AutomaticProcessActivity> getAutomaticProcessActivities() { | |
| return automaticProcessActivities; | |
| } | |
| public void setAutomaticProcessActivities( | |
| List<AutomaticProcessActivity> automaticProcessActivities) { | |
| this.automaticProcessActivities = automaticProcessActivities; | |
| } | |
| public Set<BouncedEmail> getBouncedEmails() { | |
| return bouncedEmails; | |
| } | |
| public void setBouncedEmails(Set<BouncedEmail> bouncedEmails) { | |
| this.bouncedEmails = bouncedEmails; | |
| } | |
| public Set<Assignment> getAssignedBy() { | |
| return assignedBy; | |
| } | |
| public void setAssignedBy(Set<Assignment> assignedBy) { | |
| this.assignedBy = assignedBy; | |
| } | |
| public Set<Assignment> getAssignedTo() { | |
| return assignedTo; | |
| } | |
| public void setAssignedTo(Set<Assignment> assignedTo) { | |
| this.assignedTo = assignedTo; | |
| } | |
| public Set<ExotelDetail> getExotelDetails() { | |
| return exotelDetails; | |
| } | |
| public void setExotelDetails(Set<ExotelDetail> exotelDetails) { | |
| this.exotelDetails = exotelDetails; | |
| } | |
| public Set<ExotelSMSDetail> getExotelSMSDetails() { | |
| return exotelSMSDetails; | |
| } | |
| public void setExotelSMSDetails(Set<ExotelSMSDetail> exotelSMSDetails) { | |
| this.exotelSMSDetails = exotelSMSDetails; | |
| } | |
| public List<FacebookUserDetail> getFacebookUserDetail() { | |
| return facebookUserDetail; | |
| } | |
| public void setFacebookUserDetail(List<FacebookUserDetail> facebookUserDetail) { | |
| this.facebookUserDetail = facebookUserDetail; | |
| } | |
| // public Set<LinkedInUser> getSetOfLinkedInUser() { | |
| // return setOfLinkedInUser; | |
| // } | |
| // | |
| // | |
| // public void setSetOfLinkedInUser(Set<LinkedInUser> setOfLinkedInUser) { | |
| // this.setOfLinkedInUser = setOfLinkedInUser; | |
| // } | |
| public Set<Payment> getSetOfPayment() { | |
| return setOfPayment; | |
| } | |
| public void setSetOfPayment(Set<Payment> setOfPayment) { | |
| this.setOfPayment = setOfPayment; | |
| } | |
| /*public Set<StatusType> getSetOfStatusType() { | |
| return setOfStatusType; | |
| } | |
| public void setSetOfStatusType(Set<StatusType> setOfStatusType) { | |
| this.setOfStatusType = setOfStatusType; | |
| } | |
| public Set<StatusValue> getSetOfStatusValue() { | |
| return setOfStatusValue; | |
| } | |
| public void setSetOfStatusValue(Set<StatusValue> setOfStatusValue) { | |
| this.setOfStatusValue = setOfStatusValue; | |
| }*/ | |
| public Integer getUpdatedBy() { | |
| return updatedBy; | |
| } | |
| public void setUpdatedBy(Integer updatedBy) { | |
| this.updatedBy = updatedBy; | |
| } | |
| public Set<Payment> getSetOfPaymentCreatedBy() { | |
| return setOfPaymentCreatedBy; | |
| } | |
| public void setSetOfPaymentCreatedBy(Set<Payment> setOfPaymentCreatedBy) { | |
| this.setOfPaymentCreatedBy = setOfPaymentCreatedBy; | |
| } | |
| public String getName() { | |
| return name; | |
| } | |
| public void setName(String name) { | |
| this.name = name; | |
| } | |
| public Set<Assignment> getSetOfAssignmentByThisUser() { | |
| return setOfAssignmentByThisUser; | |
| } | |
| public void setSetOfAssignmentByThisUser( | |
| Set<Assignment> setOfAssignmentByThisUser) { | |
| this.setOfAssignmentByThisUser = setOfAssignmentByThisUser; | |
| } | |
| public Set<Assignment> getSetOfAssignmentToThisUser() { | |
| return setOfAssignmentToThisUser; | |
| } | |
| public void setSetOfAssignmentToThisUser( | |
| Set<Assignment> setOfAssignmentToThisUser) { | |
| this.setOfAssignmentToThisUser = setOfAssignmentToThisUser; | |
| } | |
| public Set<ComplaintPricingApplied> getSetOfComplaintPricingApplied() { | |
| return setOfComplaintPricingApplied; | |
| } | |
| public void setSetOfComplaintPricingApplied( | |
| Set<ComplaintPricingApplied> setOfComplaintPricingApplied) { | |
| this.setOfComplaintPricingApplied = setOfComplaintPricingApplied; | |
| } | |
| public Set<UserDetails> getSetOfUserDetails() { | |
| return setOfUserDetails; | |
| } | |
| public void setSetOfUserDetails(Set<UserDetails> setOfUserDetails) { | |
| this.setOfUserDetails = setOfUserDetails; | |
| } | |
| public Set<UserLoginHistory> getSetOfUserLoginHistory() { | |
| return setOfUserLoginHistory; | |
| } | |
| public void setSetOfUserLoginHistory(Set<UserLoginHistory> setOfUserLoginHistory) { | |
| this.setOfUserLoginHistory = setOfUserLoginHistory; | |
| } | |
| public Set<UserCompany> getSetOfUserCompanyUpdatedByThisUser() { | |
| return setOfUserCompanyUpdatedByThisUser; | |
| } | |
| public void setSetOfUserCompanyUpdatedByThisUser( | |
| Set<UserCompany> setOfUserCompanyUpdatedByThisUser) { | |
| this.setOfUserCompanyUpdatedByThisUser = setOfUserCompanyUpdatedByThisUser; | |
| } | |
| public Set<UserCompany> getSetOfUserCompany() { | |
| return setOfUserCompany; | |
| } | |
| public void setSetOfUserCompany(Set<UserCompany> setOfUserCompany) { | |
| this.setOfUserCompany = setOfUserCompany; | |
| } | |
| public Set<UserAddress> getSetOfUserAddress() { | |
| return setOfUserAddress; | |
| } | |
| public void setSetOfUserAddress(Set<UserAddress> setOfUserAddress) { | |
| this.setOfUserAddress = setOfUserAddress; | |
| } | |
| public Set<ComplaintPriority> getSetOfComplaintPriorityUpdatedByThisUser() { | |
| return setOfComplaintPriorityUpdatedByThisUser; | |
| } | |
| public void setSetOfComplaintPriorityUpdatedByThisUser( | |
| Set<ComplaintPriority> setOfComplaintPriorityUpdatedByThisUser) { | |
| this.setOfComplaintPriorityUpdatedByThisUser = setOfComplaintPriorityUpdatedByThisUser; | |
| } | |
| public Set<ComplaintStatus> getSetOfComplaintStatusUpdatedByThisUser() { | |
| return setOfComplaintStatusUpdatedByThisUser; | |
| } | |
| public void setSetOfComplaintStatusUpdatedByThisUser( | |
| Set<ComplaintStatus> setOfComplaintStatusUpdatedByThisUser) { | |
| this.setOfComplaintStatusUpdatedByThisUser = setOfComplaintStatusUpdatedByThisUser; | |
| } | |
| public Set<ComplaintStatus> getSetOfComplaintStatusForThisUser() { | |
| return setOfComplaintStatusForThisUser; | |
| } | |
| public void setSetOfComplaintStatusForThisUser( | |
| Set<ComplaintStatus> setOfComplaintStatusForThisUser) { | |
| this.setOfComplaintStatusForThisUser = setOfComplaintStatusForThisUser; | |
| } | |
| public Set<ComplaintTag> getSetOfComplaintTags() { | |
| return setOfComplaintTags; | |
| } | |
| public void setSetOfComplaintTags(Set<ComplaintTag> setOfComplaintTags) { | |
| this.setOfComplaintTags = setOfComplaintTags; | |
| } | |
| public Set<MobileAppsUser> getAppsUsers() { | |
| return appsUsers; | |
| } | |
| public void setAppsUsers(Set<MobileAppsUser> appsUsers) { | |
| this.appsUsers = appsUsers; | |
| } | |
| public Set<CompanyRating> getSetOfCompanyRating() { | |
| return setOfCompanyRating; | |
| } | |
| public void setSetOfCompanyRating(Set<CompanyRating> setOfCompanyRating) { | |
| this.setOfCompanyRating = setOfCompanyRating; | |
| } | |
| public Set<MobileAppsFacebook> getAppsFacebooks() { | |
| return appsFacebooks; | |
| } | |
| public void setAppsFacebooks(Set<MobileAppsFacebook> appsFacebooks) { | |
| this.appsFacebooks = appsFacebooks; | |
| } | |
| public Set<EmailPreferences> getEmailPreferences() { | |
| return emailPreferences; | |
| } | |
| public void setEmailPreferences(Set<EmailPreferences> emailPreferences) { | |
| this.emailPreferences = emailPreferences; | |
| } | |
| public Set<ExotelCall> getUsers() { | |
| return users; | |
| } | |
| public void setUsers(Set<ExotelCall> users) { | |
| this.users = users; | |
| } | |
| public Set<MoreTeamUser> getMoreuser() { | |
| return moreuser; | |
| } | |
| public void setMoreuser(Set<MoreTeamUser> moreuser) { | |
| this.moreuser = moreuser; | |
| } | |
| public Set<GoogleMailAuthor> getSetOfGoogleMailAuthor() { | |
| return setOfGoogleMailAuthor; | |
| } | |
| public void setSetOfGoogleMailAuthor(Set<GoogleMailAuthor> setOfGoogleMailAuthor) { | |
| this.setOfGoogleMailAuthor = setOfGoogleMailAuthor; | |
| } | |
| public Set<AssignmentThreshold> getSetOfAssignmentThresholds() { | |
| return setOfAssignmentThresholds; | |
| } | |
| public void setSetOfAssignmentThresholds( | |
| Set<AssignmentThreshold> setOfAssignmentThresholds) { | |
| this.setOfAssignmentThresholds = setOfAssignmentThresholds; | |
| } | |
| public Set<EmailSent> getEmailSentSet() { | |
| return emailSentSet; | |
| } | |
| public void setEmailSentSet(Set<EmailSent> emailSentSet) { | |
| this.emailSentSet = emailSentSet; | |
| } | |
| public Set<UserCompanyAssignment> getSetOfUserCompanyAssignment() { | |
| return setOfUserCompanyAssignment; | |
| } | |
| public void setSetOfUserCompanyAssignment( | |
| Set<UserCompanyAssignment> setOfUserCompanyAssignment) { | |
| this.setOfUserCompanyAssignment = setOfUserCompanyAssignment; | |
| } | |
| public Set<PublicCommentDiary> getPublicCommentDiary() { | |
| return publicCommentDiary; | |
| } | |
| public void setPublicCommentDiary(Set<PublicCommentDiary> publicCommentDiary) { | |
| this.publicCommentDiary = publicCommentDiary; | |
| } | |
| public Set<AircelAgentMapping> getSetOfRetailStoreUser() { | |
| return setOfRetailStoreUser; | |
| } | |
| public Set<AircelCircleContactDetail> getSetOfAircelCircleContactDetail() { | |
| return setOfAircelCircleContactDetail; | |
| } | |
| public void setSetOfAircelCircleContactDetail( | |
| Set<AircelCircleContactDetail> setOfAircelCircleContactDetail) { | |
| this.setOfAircelCircleContactDetail = setOfAircelCircleContactDetail; | |
| } | |
| public void setSetOfRetailStoreUser(Set<AircelAgentMapping> setOfRetailStoreUser) { | |
| this.setOfRetailStoreUser = setOfRetailStoreUser; | |
| } | |
| public Set<AircelAgentMapping> getSetOfAircelAgent() { | |
| return setOfAircelAgent; | |
| } | |
| public void setSetOfAircelAgent(Set<AircelAgentMapping> setOfAircelAgent) { | |
| this.setOfAircelAgent = setOfAircelAgent; | |
| } | |
| //-------------end getter/setter----------- | |
| public Set<HighPriorityAlertSubscriptions> getSetOfHighPriorityAlertSubscriptions() { | |
| return setOfHighPriorityAlertSubscriptions; | |
| } | |
| public void setSetOfHighPriorityAlertSubscriptions( | |
| Set<HighPriorityAlertSubscriptions> setOfHighPriorityAlertSubscriptions) { | |
| this.setOfHighPriorityAlertSubscriptions = setOfHighPriorityAlertSubscriptions; | |
| } | |
| public List<UserCompanySourcePriority> getUserCompanySourcePriorityList() { | |
| return userCompanySourcePriorityList; | |
| } | |
| public void setUserCompanySourcePriorityList( | |
| List<UserCompanySourcePriority> userCompanySourcePriorityList) { | |
| this.userCompanySourcePriorityList = userCompanySourcePriorityList; | |
| } | |
| public List<UserCompanySourcePriority> getUserCompanySourcePriorityCreatedByList() { | |
| return userCompanySourcePriorityCreatedByList; | |
| } | |
| public void setUserCompanySourcePriorityCreatedByList( | |
| List<UserCompanySourcePriority> userCompanySourcePriorityCreatedByList) { | |
| this.userCompanySourcePriorityCreatedByList = userCompanySourcePriorityCreatedByList; | |
| } | |
| public Set<PumaRetailApprovalStatus> getSetOfPumaRetailApprovalStatus() { | |
| return setOfPumaRetailApprovalStatus; | |
| } | |
| public void setSetOfPumaRetailApprovalStatus( | |
| Set<PumaRetailApprovalStatus> setOfPumaRetailApprovalStatus) { | |
| this.setOfPumaRetailApprovalStatus = setOfPumaRetailApprovalStatus; | |
| } | |
| public Set<PumaRetailARMMapping> getSetOfARMPumaStoreARMMapping() { | |
| return setOfARMPumaStoreARMMapping; | |
| } | |
| public void setSetOfARMPumaStoreARMMapping( | |
| Set<PumaRetailARMMapping> setOfARMPumaStoreARMMapping) { | |
| this.setOfARMPumaStoreARMMapping = setOfARMPumaStoreARMMapping; | |
| } | |
| public Set<PumaRetailARMMapping> getSetOfStorePumaStoreARMMapping() { | |
| return setOfStorePumaStoreARMMapping; | |
| } | |
| public void setSetOfStorePumaStoreARMMapping( | |
| Set<PumaRetailARMMapping> setOfStorePumaStoreARMMapping) { | |
| this.setOfStorePumaStoreARMMapping = setOfStorePumaStoreARMMapping; | |
| } | |
| public Set<PumaRetailCMMMapping> getSetOfCMMPumaRetailCMMMapping() { | |
| return setOfCMMPumaRetailCMMMapping; | |
| } | |
| public void setSetOfCMMPumaRetailCMMMapping( | |
| Set<PumaRetailCMMMapping> setOfCMMPumaRetailCMMMapping) { | |
| this.setOfCMMPumaRetailCMMMapping = setOfCMMPumaRetailCMMMapping; | |
| } | |
| public Set<PumaRetailCMMMapping> getSetOfRRMPumaRetailCMMMapping() { | |
| return setOfRRMPumaRetailCMMMapping; | |
| } | |
| public void setSetOfRRMPumaRetailCMMMapping( | |
| Set<PumaRetailCMMMapping> setOfRRMPumaRetailCMMMapping) { | |
| this.setOfRRMPumaRetailCMMMapping = setOfRRMPumaRetailCMMMapping; | |
| } | |
| public Set<PumaRetailHMMapping> getSetOfCMMPumaHMMapping() { | |
| return setOfCMMPumaHMMapping; | |
| } | |
| public void setSetOfCMMPumaHMMapping( | |
| Set<PumaRetailHMMapping> setOfCMMPumaHMMapping) { | |
| this.setOfCMMPumaHMMapping = setOfCMMPumaHMMapping; | |
| } | |
| public Set<PumaRetailHMMapping> getSetOfHMPumaHMMapping() { | |
| return setOfHMPumaHMMapping; | |
| } | |
| public void setSetOfHMPumaHMMapping( | |
| Set<PumaRetailHMMapping> setOfHMPumaHMMapping) { | |
| this.setOfHMPumaHMMapping = setOfHMPumaHMMapping; | |
| } | |
| public Set<PumaRetailRRMMapping> getSetOfARMPumaARMRRMMapping() { | |
| return setOfARMPumaARMRRMMapping; | |
| } | |
| public void setSetOfARMPumaARMRRMMapping( | |
| Set<PumaRetailRRMMapping> setOfARMPumaARMRRMMapping) { | |
| this.setOfARMPumaARMRRMMapping = setOfARMPumaARMRRMMapping; | |
| } | |
| public Set<PumaRetailRRMMapping> getSetOfRRMPumaARMRRMMapping() { | |
| return setOfRRMPumaARMRRMMapping; | |
| } | |
| public void setSetOfRRMPumaARMRRMMapping( | |
| Set<PumaRetailRRMMapping> setOfRRMPumaARMRRMMapping) { | |
| this.setOfRRMPumaARMRRMMapping = setOfRRMPumaARMRRMMapping; | |
| } | |
| public Set<CompanyUserLevel> getCompanyUserLevel() { | |
| return companyUserLevel; | |
| } | |
| public void setCompanyUserLevel(Set<CompanyUserLevel> companyUserLevel) { | |
| this.companyUserLevel = companyUserLevel; | |
| } | |
| public Set<PumaRetailStoreNameMapping> getSetOfPumaRetailStoreNameMapping() { | |
| return setOfPumaRetailStoreNameMapping; | |
| } | |
| public void setSetOfPumaRetailStoreNameMapping(Set<PumaRetailStoreNameMapping> setOfPumaRetailStoreNameMapping) { | |
| this.setOfPumaRetailStoreNameMapping = setOfPumaRetailStoreNameMapping; | |
| } | |
| public Set<PumaRetailComplaintLevelInfo> getSetOfPumaLevel1() { | |
| return setOfPumaLevel1; | |
| } | |
| public void setSetOfPumaLevel1(Set<PumaRetailComplaintLevelInfo> setOfPumaLevel1) { | |
| this.setOfPumaLevel1 = setOfPumaLevel1; | |
| } | |
| public Set<PumaRetailComplaintLevelInfo> getSetOfPumaLevel2() { | |
| return setOfPumaLevel2; | |
| } | |
| public void setSetOfPumaLevel2(Set<PumaRetailComplaintLevelInfo> setOfPumaLevel2) { | |
| this.setOfPumaLevel2 = setOfPumaLevel2; | |
| } | |
| public Set<PumaRetailComplaintLevelInfo> getSetOfPumaLevel3() { | |
| return setOfPumaLevel3; | |
| } | |
| public void setSetOfPumaLevel3(Set<PumaRetailComplaintLevelInfo> setOfPumaLevel3) { | |
| this.setOfPumaLevel3 = setOfPumaLevel3; | |
| } | |
| public FullContactDetails getFullContactDetails() { | |
| return fullContactDetails; | |
| } | |
| public void setFullContactDetails(FullContactDetails fullContactDetails) { | |
| this.fullContactDetails = fullContactDetails; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment