Uses of Class
software.xdev.sched.client.ApiException
Packages that use ApiException
-
Uses of ApiException in software.xdev.sched.api
Methods in software.xdev.sched.api that throw ApiExceptionModifier and TypeMethodDescriptionRoleApi.addRole
(String username, String role, String sessions, String sendEmail, Map<String, String> additionalHeaders) SessionApi.addSession
(String sessionKey, String name, String sessionStart, String sessionEnd, String sessionType, String sessionSubtype, String description, URI mediaUrl, String venue, String address, String tags, String seats, URI rsvpUrl, String ticketMessage, String active, Object customFields) SessionApi.addSession
(String sessionKey, String name, String sessionStart, String sessionEnd, String sessionType, String sessionSubtype, String description, URI mediaUrl, String venue, String address, String tags, String seats, URI rsvpUrl, String ticketMessage, String active, Object customFields, Map<String, String> additionalHeaders) UserApi.addUser
(String username, String email, String password, String phone, String privacy, String role, String sessions, String fullName, String about, URI avatar, String location, String company, String position, String booth, String sendEmail, String tags, String legacyApi) UserApi.addUser
(String username, String email, String password, String phone, String privacy, String role, String sessions, String fullName, String about, URI avatar, String location, String company, String position, String booth, String sendEmail, String tags, String legacyApi, Map<String, String> additionalHeaders) RoleApi.deleteRole
(String username, String role, String sessions) RoleApi.deleteRole
(String username, String role, String sessions, Map<String, String> additionalHeaders) SessionApi.deleteSession
(String sessionKey) SessionApi.deleteSession
(String sessionKey, Map<String, String> additionalHeaders) SessionApi.exportSessions
(Integer since, String format, String fields, Integer page, Integer limit, String stripHtml, String customData) SessionApi.exportSessions
(Integer since, String format, String fields, Integer page, Integer limit, String stripHtml, String customData, Map<String, String> additionalHeaders) SessionApi.listSessions
(Integer since, String format, String status, String customData) SessionApi.listSessions
(Integer since, String format, String status, String customData, Map<String, String> additionalHeaders) SessionApi.modifySession
(String sessionKey, String name, String sessionStart, String sessionEnd, String sessionType, String sessionSubtype, String description, URI mediaUrl, String venue, String address, String tags, String seats, URI rsvpUrl, String ticketMessage, String active) SessionApi.modifySession
(String sessionKey, String name, String sessionStart, String sessionEnd, String sessionType, String sessionSubtype, String description, URI mediaUrl, String venue, String address, String tags, String seats, URI rsvpUrl, String ticketMessage, String active, Map<String, String> additionalHeaders) -
Uses of ApiException in software.xdev.sched.client
Methods in software.xdev.sched.client that throw ApiExceptionModifier and TypeMethodDescription<T> T
ApiClient.deserialize
(org.apache.hc.client5.http.impl.classic.CloseableHttpResponse response, com.fasterxml.jackson.core.type.TypeReference<T> valueType) Deserialize response body to Java object according to the Content-Type.<T> T
ApiClient.invokeAPI
(String path, String method, List<Pair> queryParams, List<Pair> collectionQueryParams, String urlQueryDeepObject, Object body, Map<String, String> headerParams, Map<String, String> cookieParams, Map<String, Object> formParams, String accept, String contentType, String[] authNames, com.fasterxml.jackson.core.type.TypeReference<T> returnType) Invoke API by sending HTTP request with the given options.protected <T> T
ApiClient.processResponse
(org.apache.hc.client5.http.impl.classic.CloseableHttpResponse response, com.fasterxml.jackson.core.type.TypeReference<T> returnType) org.apache.hc.core5.http.HttpEntity
ApiClient.serialize
(Object obj, Map<String, Object> formParams, org.apache.hc.core5.http.ContentType contentType) Serialize the given Java object into string according the given Content-Type (only JSON is supported for now).