Package com.camunda.fox.model.dto

Examples of com.camunda.fox.model.dto.Person


  @Override
  public void process(Exchange exchange) throws Exception {
    @SuppressWarnings("unchecked")
    Map<String, Object> map = exchange.getIn().getBody(HashMap.class);

    Person person = new Person((String) map.get("firstname"),
        (String) map.get("lastname"), (String) map.get("title"),
        (Date) map.get("dateofbirth"),
        (String) map.get("placeofbirth"), (String) map.get("gender"),
        (String) map.get("phonenumber"), (String) map.get("email"));
View Full Code Here


    } catch (ParseException e) {
      // this won't happen, unfortunately we are forced to catch the
      // and handle exception though...
      date = null;
    }
    Person person = new Person("John", "Doe", "Mr.", date, "Some Place",
        "male", "123456", "john.doe@somecompany.com");
    Address address = new Address("The Street", 1, "1234", "The City",
        "The State", "The Country");
    Order order = new Order("0001", person, address, "debit");
    return order;
View Full Code Here

    } catch (ParseException e) {
      // this won't happen, unfortunately we are forced to catch the
      // and handle exception though...
      date = null;
    }
    Person person = new Person("John", "Doe", "Mr.", date, "Some Place",
        "male", "123456", "john.doe@somecompany.com");
    Address address = new Address("The Street", 1, "1234", "The City",
        "The State", "The Country");
    Order order = new Order("0001", person, address, "debit");
    return order;
View Full Code Here

*/
public class MapToOrderProcessor {

  public Order process(Map<String, Object> map) throws Exception {

    Person person = new Person((String) map.get("firstname"),
        (String) map.get("lastname"), (String) map.get("title"),
        (Date) map.get("dateofbirth"),
        (String) map.get("placeofbirth"), (String) map.get("gender"),
        (String) map.get("phonenumber"), (String) map.get("email"));

View Full Code Here

TOP

Related Classes of com.camunda.fox.model.dto.Person

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.