Package org.pathways.openciss.shared

Examples of org.pathways.openciss.shared.ClientOutreachService


        Date engagementDate =  df.parse(ob.get("Engagement_Date").getTextValue());
        if (engagementDate != null) {
          co.setEngagementDate(engagementDate);
        }
      } catch (Exception e){System.out.println(e);}
      ClientOutreachService cos = new ClientOutreachService();
      String outreachID = String.valueOf(cos.createClientOutreach(co));
      // return the generated id
      return String.valueOf(outreachID);
    } catch(Exception e){e.printStackTrace();}
    return "-1";
  }
View Full Code Here

TOP

Related Classes of org.pathways.openciss.shared.ClientOutreachService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.