001package com.gigya.android.sdk.account.models; 002 003import android.support.annotation.Nullable; 004 005public class Work { 006 007 @Nullable 008 private String company; 009 @Nullable 010 private String companyID; 011 @Nullable 012 private Long companySize; 013 @Nullable 014 private String description; 015 @Nullable 016 private String endDate; 017 @Nullable 018 private String industry; 019 private boolean isCurrent; 020 @Nullable 021 private String location; 022 @Nullable 023 private String startDate; 024 @Nullable 025 private String title; 026 027 @Nullable 028 public String getCompany() { 029 return company; 030 } 031 032 public void setCompany(@Nullable String company) { 033 this.company = company; 034 } 035 036 @Nullable 037 public String getCompanyID() { 038 return companyID; 039 } 040 041 public void setCompanyID(@Nullable String companyID) { 042 this.companyID = companyID; 043 } 044 045 @Nullable 046 public Long getCompanySize() { 047 return companySize; 048 } 049 050 public void setCompanySize(@Nullable Long companySize) { 051 this.companySize = companySize; 052 } 053 054 @Nullable 055 public String getDescription() { 056 return description; 057 } 058 059 public void setDescription(@Nullable String description) { 060 this.description = description; 061 } 062 063 @Nullable 064 public String getEndDate() { 065 return endDate; 066 } 067 068 public void setEndDate(@Nullable String endDate) { 069 this.endDate = endDate; 070 } 071 072 @Nullable 073 public String getIndustry() { 074 return industry; 075 } 076 077 public void setIndustry(@Nullable String industry) { 078 this.industry = industry; 079 } 080 081 public boolean isCurrent() { 082 return isCurrent; 083 } 084 085 public void setCurrent(boolean current) { 086 isCurrent = current; 087 } 088 089 @Nullable 090 public String getLocation() { 091 return location; 092 } 093 094 public void setLocation(@Nullable String location) { 095 this.location = location; 096 } 097 098 @Nullable 099 public String getStartDate() { 100 return startDate; 101 } 102 103 public void setStartDate(@Nullable String startDate) { 104 this.startDate = startDate; 105 } 106 107 @Nullable 108 public String getTitle() { 109 return title; 110 } 111 112 public void setTitle(@Nullable String title) { 113 this.title = title; 114 } 115}