Class EducationAndResearchActivityAfterTrainingClient
- java.lang.Object
-
- com.github.dannil.scbjavaclient.client.AbstractClient
-
- com.github.dannil.scbjavaclient.client.educationandresearch.activityaftertraining.EducationAndResearchActivityAfterTrainingClient
-
public class EducationAndResearchActivityAfterTrainingClient extends AbstractClient
Client which handles education and research activity after training data fetching.
- Since:
- 0.5.0
-
-
Constructor Summary
Constructors Constructor Description EducationAndResearchActivityAfterTrainingClient()Default constructor.EducationAndResearchActivityAfterTrainingClient(Locale locale)Overloaded constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseModel>getPersonsActivitiesAfterCompletingCompulsorySchool()Fetch all persons' activities 1-3 years after completing compulsory school data.List<ResponseModel>getPersonsActivitiesAfterCompletingCompulsorySchool(Collection<Integer> yearsAfterCompletedEducation, Collection<Integer> levelsOfEducations, Collection<Integer> activities, Collection<Integer> sexes, Collection<String> counties, Collection<Integer> municipalityGroups, Collection<String> yearsOfExam)Fetch all persons' activities 1-3 years after completing compulsory school data which match the input constraints.List<ResponseModel>getPersonsActivitiesAfterCompletingHigherEducation()Fetch all persons' activities 1-3 years after completing higher education data.List<ResponseModel>getPersonsActivitiesAfterCompletingHigherEducation(Collection<Integer> yearsAfterCompletedEducation, Collection<Integer> levelsOfAcademicDegrees, Collection<Integer> activities, Collection<Integer> sexes, Collection<String> agesAtExam, Collection<String> yearsOfExam)Fetch all persons' activities 1-3 years after completing higher education data which match the input constraints.URLEndpointgetUrl()Returns the URL endpoint which this client represents.-
Methods inherited from class com.github.dannil.scbjavaclient.client.AbstractClient
doGetRequest, doPostRequest, getCommunicationProtocol, getLocale, getLocalizationLocale, getResponseModels, getResponseModels, getRootUrl, setCommunicationProtocol, setLocale, setLocalizationLocale
-
-
-
-
Constructor Detail
-
EducationAndResearchActivityAfterTrainingClient
public EducationAndResearchActivityAfterTrainingClient()
Default constructor.
-
EducationAndResearchActivityAfterTrainingClient
public EducationAndResearchActivityAfterTrainingClient(Locale locale)
Overloaded constructor.
- Parameters:
locale- theLocalefor this client
-
-
Method Detail
-
getPersonsActivitiesAfterCompletingHigherEducation
public List<ResponseModel> getPersonsActivitiesAfterCompletingHigherEducation()
Fetch all persons' activities 1-3 years after completing higher education data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getPersonsActivitiesAfterCompletingHigherEducation(Collection, Collection, Collection, Collection, Collection, Collection)
-
getPersonsActivitiesAfterCompletingHigherEducation
public List<ResponseModel> getPersonsActivitiesAfterCompletingHigherEducation(Collection<Integer> yearsAfterCompletedEducation, Collection<Integer> levelsOfAcademicDegrees, Collection<Integer> activities, Collection<Integer> sexes, Collection<String> agesAtExam, Collection<String> yearsOfExam)
Fetch all persons' activities 1-3 years after completing higher education data which match the input constraints.
- Parameters:
yearsAfterCompletedEducation- the years after completed educationlevelsOfAcademicDegrees- the levels of academic degreesactivities- the activitiessexes- the sexesagesAtExam- the ages at examyearsOfExam- the years of exam- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getPersonsActivitiesAfterCompletingCompulsorySchool
public List<ResponseModel> getPersonsActivitiesAfterCompletingCompulsorySchool()
Fetch all persons' activities 1-3 years after completing compulsory school data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getPersonsActivitiesAfterCompletingCompulsorySchool(Collection, Collection, Collection, Collection, Collection, Collection, Collection)
-
getPersonsActivitiesAfterCompletingCompulsorySchool
public List<ResponseModel> getPersonsActivitiesAfterCompletingCompulsorySchool(Collection<Integer> yearsAfterCompletedEducation, Collection<Integer> levelsOfEducations, Collection<Integer> activities, Collection<Integer> sexes, Collection<String> counties, Collection<Integer> municipalityGroups, Collection<String> yearsOfExam)
Fetch all persons' activities 1-3 years after completing compulsory school data which match the input constraints.
- Parameters:
yearsAfterCompletedEducation- the years after completed educationlevelsOfEducations- the levels of educationsactivities- the activitiessexes- the sexescounties- the countiesmunicipalityGroups- the municipality groupsyearsOfExam- the years of exam- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getUrl
public URLEndpoint getUrl()
Description copied from class:AbstractClientReturns the URL endpoint which this client represents.
- Specified by:
getUrlin classAbstractClient- Returns:
- the URL endpoint for this client
-
-