extension/storage/storage-custom/src/main/java/com/alibaba/smart/framework/engine/persister/util/InstanceSerializerV1.java [93:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static ProcessInstance deserializeProcessInstance(String serializeString) {
        ProcessInstance processInstance = new DefaultProcessInstance();

        StringTokenizer st = new StringTokenizer(serializeString, "|");
        String serializeVersion = st.nextToken();
        String processInstanceValue = st.nextToken();

        buildProcessInstance(processInstance, processInstanceValue);

        return processInstance;

    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



extension/storage/storage-custom/src/main/java/com/alibaba/smart/framework/engine/persister/util/InstanceSerializer.java [84:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static ProcessInstance deserializeProcessInstance(String serializeString) {
        ProcessInstance processInstance = new DefaultProcessInstance();

        StringTokenizer st = new StringTokenizer(serializeString, "|");
        String serializeVersion = st.nextToken();
        String processInstanceValue = st.nextToken();

        buildProcessInstance(processInstance, processInstanceValue);

        return processInstance;

    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



