Java SDK Samples - Blueprint Operations
package com.zoho.crm.sample.blueprint;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import org.json.JSONObject;
import com.zoho.crm.api.blueprint.APIException;
import com.zoho.crm.api.blueprint.ActionResponse;
import com.zoho.crm.api.blueprint.AutoNumber;
import com.zoho.crm.api.blueprint.BluePrintOperations;
import com.zoho.crm.api.blueprint.BodyWrapper;
import com.zoho.crm.api.blueprint.Field;
import com.zoho.crm.api.blueprint.Layout;
import com.zoho.crm.api.blueprint.MultiSelectLookup;
import com.zoho.crm.api.blueprint.NextTransition;
import com.zoho.crm.api.blueprint.PickListValues;
import com.zoho.crm.api.blueprint.ProcessInfo;
import com.zoho.crm.api.blueprint.ResponseHandler;
import com.zoho.crm.api.blueprint.ResponseWrapper;
import com.zoho.crm.api.blueprint.SuccessResponse;
import com.zoho.crm.api.blueprint.ToolTip;
import com.zoho.crm.api.blueprint.Transition;
import com.zoho.crm.api.blueprint.ViewType;
import com.zoho.crm.api.record.Record;
import com.zoho.crm.api.users.User;
import com.zoho.crm.api.util.APIResponse;
import com.zoho.crm.api.util.Model;
public class BluePrint
{
/**
* Get Blueprint
* This method is used to get a single record's Blueprint details with ID and print the response.
* @param moduleAPIName The API Name of the record's module
* @param recordId The ID of the record to get Blueprint
* @throws Exception
*/
public static void getBlueprint(String moduleAPIName, Long recordId) throws Exception
{
//example
//String moduleAPIName = "Leads";
//Long recordID = 3477061000004381002L;
//Get instance of BluePrintOperations Class that takes recordId and moduleAPIName as parameter
BluePrintOperations bluePrintOperations = new BluePrintOperations(recordId, moduleAPIName);
//Call getAttachments method
APIResponse<ResponseHandler> response = bluePrintOperations.getBlueprint();
if(response != null)
{
//Get the status code from response
System.out.println("Status Code: " + response.getStatusCode());
if(Arrays.asList(204,304).contains(response.getStatusCode()))
{
System.out.println(response.getStatusCode() == 204? "No Content" : "Not Modified");
return;
}
//Check if expected response is received
if(response.isExpected())
{
//Get object from response
ResponseHandler responseHandler = response.getObject();
if(responseHandler instanceof ResponseWrapper)
{
//Get the received ResponseWrapper instance
ResponseWrapper responseWrapper = (ResponseWrapper) responseHandler;
//Get the list of obtained BluePrint instances
com.zoho.crm.api.blueprint.BluePrint bluePrint = responseWrapper.getBlueprint();
//Get the ProcessInfo instance of each BluePrint
ProcessInfo processInfo = bluePrint.getProcessInfo();
//Check if ProcessInfo is not null
if(processInfo != null)
{
//Get the Field ID of the ProcessInfo
System.out.println("ProcessInfo Field-ID: " + processInfo.getFieldId());
//Get the isContinuous of the ProcessInfo
System.out.println("ProcessInfo isContinuous: " + processInfo.getIsContinuous());
//Get the API Name of the ProcessInfo
System.out.println("ProcessInfo API Name: " + processInfo.getAPIName());
//Get the Continuous of the ProcessInfo
System.out.println("ProcessInfo Continuous: " + processInfo.getContinuous());
//Get the FieldLabel of the ProcessInfo
System.out.println("ProcessInfo FieldLabel: " + processInfo.getFieldLabel());
//Get the Name of the ProcessInfo
System.out.println("ProcessInfo Name: " + processInfo.getName());
//Get the ColumnName of the ProcessInfo
System.out.println("ProcessInfo ColumnName: " + processInfo.getColumnName());
//Get the FieldValue of the ProcessInfo
System.out.println("ProcessInfo FieldValue: " + processInfo.getFieldValue());
//Get the ID of the ProcessInfo
System.out.println("ProcessInfo ID: " + processInfo.getId());
//Get the FieldName of the ProcessInfo
System.out.println("ProcessInfo FieldName: " + processInfo.getFieldName());
}
List<Transition> transitions = bluePrint.getTransitions();
for(Transition transition : transitions)
{
List<NextTransition> nextTransitions = transition.getNextTransitions();
for(NextTransition nextTransition : nextTransitions)
{
//Get the ID of the NextTransition
System.out.println("NextTransition ID: " + nextTransition.getId());
//Get the Name of the NextTransition
System.out.println("NextTransition Name: " + nextTransition.getName());
}
//Get the PercentPartialSave of each Transition
System.out.println("Transition PercentPartialSave: " + transition.getPercentPartialSave());
Record data = transition.getData();
//Get the ID of each record
System.out.println("Record ID: " + data.getId());
//Get the createdBy User instance of each record
User createdBy = data.getCreatedBy();
if(createdBy != null)
{
//Get the ID of the createdBy User
System.out.println("Record Created By User-ID: " + createdBy.getId());
//Get the name of the createdBy User
System.out.println("Record Created By User-Name: " + createdBy.getName());
}
//Check if the created time is not null
if(data.getCreatedTime() != null)
{
//Get the created time of each record
System.out.println("Record Created Time: " + data.getCreatedTime().toString());
}
//Check if the modified time is not null
if(data.getModifiedTime() != null)
{
//Get the modified time of each record
System.out.println("Record Modified Time: " + data.getModifiedTime().toString());
}
//Get the modifiedBy User instance of each record
User modifiedBy = data.getModifiedBy();
//Check if modifiedByUser is not null
if(modifiedBy != null)
{
//Get the ID of the modifiedBy User
System.out.println("Record Modified By User-ID: " + modifiedBy.getId());
//Get the name of the modifiedBy User
System.out.println("Record Modified By user-Name: " + modifiedBy.getName());
}
//Get all entries from the keyValues map
for(Map.Entry<String, Object>entry : data.getKeyValues().entrySet())
{
//Get each value from the map
System.out.println(entry.getKey() + ": " + entry.getValue());
}
//Get the NextFieldValue of the Transition
System.out.println("Transition NextFieldValue: " + transition.getNextFieldValue());
//Get the Name of each Transition
System.out.println("Transition Name: " + transition.getName());
//Get the CriteriaMatched of the Transition
System.out.println("Transition CriteriaMatched: " + transition.getCriteriaMatched().toString());
//Get the ID of the Transition
System.out.println("Transition ID: " + transition.getId());
List<Field> fields = transition.getFields();
for(Field field : fields)
{
//Get the webhook of each Field
System.out.println("Webhook" + field.getWebhook());
//Get the JsonType of each Field
System.out.println("JsonType: " + field.getJsonType());
//Get the DisplayLabel of each Field
System.out.println("DisplayLabel: " + field.getDisplayLabel());
//Get the DataType of each Field
System.out.println("DataType: " + field.getDataType());
//Get the ColumnName of each Field
System.out.println("ColumnName: " + field.getColumnName());
//Get the PersonalityName of each Field
System.out.println("PersonalityName: " + field.getPersonalityName());
//Get the ID of each Field
System.out.println("ID: " + field.getId());
//Get the TransitionSequence of each Field
System.out.println("TransitionSequence: " + field.getTransitionSequence().toString());
if(field.getMandatory() != null)
{
//Get the Mandatory of each Field
System.out.println("Mandatory: " + field.getMandatory().toString());
}
Layout layout = field.getLayouts();
if(layout != null)
{
//Get the ID of the Layout
System.out.println("Layout ID: " + layout.getId());
//Get the name of the Layout
System.out.println("Layout Name: " + layout.getName());
}
//Get the APIName of each Field
System.out.println("APIName: " + field.getAPIName());
//Get the Content of each Field
System.out.println("Content: " + field.getContent());
if(field.getSystemMandatory() != null)
{
//Get the SystemMandatory of each Field
System.out.println("SystemMandatory: " + field.getSystemMandatory().toString());
}
//Get the Crypt of each Field
System.out.println("Crypt: " + field.getCrypt());
//Get the FieldLabel of each Field
System.out.println("FieldLabel: " + field.getFieldLabel());
//Get the Tooltip of each Field
ToolTip toolTip = field.getTooltip();
if(toolTip != null)
{
//Get the Tooltip Name
System.out.println("Tooltip Name: " + toolTip.getName());
//Get the Tooltip Value
System.out.println("Tooltip Value: " + toolTip.getValue());
}
//Get the CreatedSource of each Field
System.out.println("CreatedSource: " + field.getCreatedSource());
if(field.getFieldReadOnly() != null)
{
//Get the FieldReadOnly of each Field
System.out.println("FieldReadOnly: " + field.getFieldReadOnly().toString());
}
if(field.getReadOnly() != null)
{
//Get the ReadOnly of each Field
System.out.println("ReadOnly: " + field.getReadOnly().toString());
}
//Get the AssociationDetails of each Field
System.out.println("AssociationDetails: " + field.getAssociationDetails());
//Get the DisplayLabel of each Field
System.out.println("DisplayLabel: " + field.getDisplayLabel());
//Get the DisplayLabel of each Field
System.out.println("DisplayLabel: " + field.getDisplayLabel());
if(field.getQuickSequenceNumber() != null)
{
//Get the QuickSequenceNumber of each Field
System.out.println("QuickSequenceNumber: " + field.getQuickSequenceNumber().toString());
}
if(field.getCustomField() != null)
{
//Get the CustomField of each Field
System.out.println("CustomField: " + field.getCustomField().toString());
}
if(field.getVisible() != null)
{
//Get the Visible of each Field
System.out.println("Visible: " + field.getVisible().toString());
}
if(field.getLength() != null)
{
//Get the Length of each Field
System.out.println("Length: " + field.getLength().toString());
}
//Get the DecimalPlace of each Field
System.out.println("DecimalPlace: " + field.getDecimalPlace());
ViewType viewType = field.getViewType();
if(viewType != null)
{
//Get the View of the ViewType
System.out.println("View: " + viewType.getView().toString());
//Get the Edit of the ViewType
System.out.println("Edit: " + viewType.getEdit().toString());
//Get the Create of the ViewType
System.out.println("Create: " + viewType.getCreate().toString());
//Get the View of the ViewType
System.out.println("QuickCreate: " + viewType.getQuickCreate().toString());
}
List<PickListValues> pickListValues = field.getPickListValues();
if(pickListValues != null)
{
for(PickListValues pickListValue : pickListValues)
{
//Get the DisplayValue of each PickListValues
System.out.println("DisplayValue: " + pickListValue.getDisplayValue());
//Get the SequenceNumber of each PickListValues
System.out.println("SequenceNumber: " + pickListValue.getSequenceNumber().toString());
//Get the ExpectedDataType of each PickListValues
System.out.println("ExpectedDataType: " + pickListValue.getExpectedDataType());
//Get the ActualValue of each PickListValues
System.out.println("ActualValue: " + pickListValue.getActualValue());
for(Object map : pickListValue.getMaps())
{
//Get each value from the map
System.out.println(map);
}
}
}
//Get all entries from the MultiSelectLookup instance
MultiSelectLookup multiSelectLookup = field.getMultiselectlookup();
if(multiSelectLookup != null)
{
//Get the DisplayValue of the MultiSelectLookup
System.out.println("DisplayLabel: " + multiSelectLookup.getDisplayLabel());
//Get the LinkingModule of the MultiSelectLookup
System.out.println("LinkingModule: " + multiSelectLookup.getLinkingModule());
//Get the LookupApiname of the MultiSelectLookup
System.out.println("LookupApiname: " + multiSelectLookup.getLookupApiname());
//Get the APIName of the MultiSelectLookup
System.out.println("APIName: " + multiSelectLookup.getAPIName());
//Get the ConnectedlookupApiname of the MultiSelectLookup
System.out.println("ConnectedlookupApiname: " + multiSelectLookup.getConnectedlookupApiname());
//Get the ID of the MultiSelectLookup
System.out.println("ID: " + multiSelectLookup.getId());
}
//Get the AutoNumber of each Field
AutoNumber autoNumber = field.getAutoNumber();
if(autoNumber != null)
{
//Get the Prefix of the AutoNumber
System.out.println("Prefix: " + autoNumber.getPrefix());
//Get the Suffix of the AutoNumber
System.out.println("Suffix: " + autoNumber.getSuffix());
if(autoNumber.getStartNumber() != null)
{
//Get the StartNumber of the AutoNumber
System.out.println("StartNumber: " + autoNumber.getStartNumber().toString());
}
}
}
//Get the CriteriaMessage of each Transition
System.out.println("Transition CriteriaMessage: " + transition.getCriteriaMessage());
}
}
//Check if the request returned an exception
else if(responseHandler instanceof APIException)
{
//Get the received APIException instance
APIException exception = (APIException) responseHandler;
//Get the Status
System.out.println("Status: " + exception.getStatus().getValue());
//Get the Code
System.out.println("Code: " + exception.getCode().getValue());
System.out.println("Details: " );
//Get the details map
for(Map.Entry<String, Object> entry : exception.getDetails().entrySet())
{
//Get each value in the map
System.out.println(entry.getKey() + ": " + entry.getValue());
}
//Get the Message
System.out.println("Message: " + exception.getMessage().getValue());
}
}
else
{//If response is not as expected
//Get model object from response
Model responseObject = response.getModel();
//Get the response object's class
Class<? extends Model> clas = responseObject.getClass();
//Get all declared fields of the response class
java.lang.reflect.Field[] fields = clas.getDeclaredFields();
for(java.lang.reflect.Field field : fields)
{
//Get each value
System.out.println(field.getName() + ":" + field.get(responseObject));
}
}
}
}
}