Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.hdodenhof.xingapi.models; /* w w w .ja va 2 s . co m*/ import java.util.List; public class ProfessionalExperience { private Company primaryCompany; private List<Company> companies; private List<Award> awards; public Company getPrimaryCompany() { return primaryCompany; } public List<Company> getCompanies() { return companies; } public List<Award> getAwards() { return awards; } }