File Structure Hierarchy - Java SDK
In
your Java IDE setup, create and arrange the packages containing
resource files, properties files, and required jars (ZCRMSDK.jar) as
displayed in the image. The numbered items shown in the image are the
files to be created in a step wise manner.
- ZCRMSDK.jar - downloaded from SDK and inside the referenced libraries.
- Configuration related property files are to be created and added into the resources package.
- A oauthtokens.properties file is added under a package path_to_tokens to store the token information.
- Create a package com.zoho.sdk.oauth_configuration and add a file initOauth.java that contains java code to generate access tokens and refresh tokens.
- Create the required java source files under a package com.zoho.sdk.api.record.
Related Articles
Class Hierarchy - Java SDK
All Zoho CRM entities are modelled as classes having members and methods applicable to that particular entity. ZCRMRestClient is the base class of the SDK. This class has, methods to get instances of various other Zoho CRM entities. The class ...
Java SDK - Overview
Java SDK offers a way to create client java applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs with ease. In other words, it serves as a wrapper for the REST APIs, making it easier to use the ...
Release Notes - Java SDK
ZCRMSDK -VERSION 1.0.6 Downloadable JAR file You can download the jar file for the version1.0.6 of Java SDKs at the end of this page. Install command - Maven:(in pom.xml) <repositories> <repository> ...
Responses & Exceptions - Java SDK
APIResponse, BulkAPIResponse and FileAPIResponse are the wrapper objects for Zoho CRM APIs’ responses. All API calling methods would return one of these three objects. A method-seeking entity would return APIResponse object, whereas a method-seeking ...
Persistence - Java SDK
Persistent classes in an application implement the entities of the business problem. In Java SDK, two default persistence classes with their implementations are provided. On the other hand, if a developer wants his specific implementation, he can ...