/**
*
*/
package zendo.playground.dichallenge;
/* REST impl for the communication with CM */
public class CMClientRestImpl implements CMClient {
public Contract retrieveContract( int id ) {
// connect with REST to CM, retrieve the contract
return null;
}
}