Move Jackson client support into net.corda.client.jackson package

Move Jackson client support into net.corda.client.jackson package to match naming scheme used elsewhere
This commit is contained in:
Ross Nicoll
2017-08-25 15:12:45 +01:00
parent 923fe16392
commit a9f572c366
15 changed files with 25 additions and 20 deletions

View File

@ -1,7 +1,7 @@
package net.corda.node.shell;
import net.corda.core.messaging.*;
import net.corda.jackson.*;
import net.corda.client.jackson.*;
import org.crsh.cli.*;
import org.crsh.command.*;

View File

@ -21,8 +21,8 @@ import net.corda.core.internal.*
import net.corda.core.messaging.CordaRPCOps
import net.corda.core.messaging.StateMachineUpdate
import net.corda.core.utilities.loggerFor
import net.corda.jackson.JacksonSupport
import net.corda.jackson.StringToMethodCallParser
import net.corda.client.jackson.JacksonSupport
import net.corda.client.jackson.StringToMethodCallParser
import net.corda.node.internal.Node
import net.corda.node.services.messaging.CURRENT_RPC_CONTEXT
import net.corda.node.services.messaging.RpcContext

View File

@ -10,7 +10,7 @@ import net.corda.core.internal.FlowStateMachine
import net.corda.core.node.ServiceHub
import net.corda.core.transactions.SignedTransaction
import net.corda.core.utilities.UntrustworthyData
import net.corda.jackson.JacksonSupport
import net.corda.client.jackson.JacksonSupport
import net.corda.node.services.identity.InMemoryIdentityService
import net.corda.node.shell.InteractiveShell
import net.corda.testing.DUMMY_CA
@ -94,4 +94,4 @@ class InteractiveShellTest {
override fun flowStackSnapshot(flowClass: Class<out FlowLogic<*>>): FlowStackSnapshot? = null
override fun persistFlowStackSnapshot(flowClass: Class<out FlowLogic<*>>) = Unit
}
}
}