* @param mconn ForceMangedConnection
* @throws Exception Exception
*/
public static void cleanSchema(ForceManagedConnection mconn) throws Exception {
PartnerConnection pc = (PartnerConnection) mconn.getConnection();
ForceSchemaWriter writer = new ForceSchemaWriter(new SchemaDeleteProperty(true, true));
DescribeGlobalResult objs = pc.describeGlobal();
for (DescribeGlobalSObjectResult s : objs.getSobjects()) {
CustomObject co = new CustomObject();
co.setFullName(s.getName());
DescribeSObjectResult sobject = pc.describeSObject(s.getName());