Examples of AjUser


Examples of com.coroptis.cubiculus.rest.model.AjUser

    @Override
    public Object toJava(JSONValue aValue, Class aRequestedClass) throws MapperException {
  if (aValue.isObject()) {
      final JSONObject jsonObject = (JSONObject) aValue;
      final AjUser out = new AjUser();
      out.setIdUser(Helper.getIntRequired(jsonObject, "idUser",
        "AjUser property idUser was not found in json data"));
      out.setIdImageIcon(Helper.getIntRequired(jsonObject, "idImageIcon",
        "AjUser property IdImageIcon was not found in json data"));
      out.setBirthDate(Helper.getDate(jsonObject, "birthDate"));
      out.setUserName(Helper.getStringRequired(jsonObject, "userName",
        "AjUser property userName was not found in json data"));
      out.setEmail(Helper.getStringRequired(jsonObject, "email",
        "AjUser property email was not found in json data"));
      out.setIdBlog(Helper.getIntRequired(jsonObject, "idBlog",
        "AjUser property idBlog was not found in json data"));
      out.setLastLogin(Helper.getDate(jsonObject, "lastLogin"));
      out.setRegistrationDate(Helper.getDate(jsonObject, "registrationDate"));
      return out;
  }
  throw new MapperException("AjPropertyValue cannot map: " + aValue.getClass().getName());
    }
View Full Code Here

Examples of com.coroptis.cubiculus.rest.model.AjUser

    }

    @Override
    public JSONValue toJSON(Object aPojo) throws MapperException {
  if (aPojo instanceof AjUser) {
      AjUser user = (AjUser) aPojo;
      final JSONObject lElements = new JSONObject();
      lElements.getValue().put("idUser", JSONMapper.toJSON(user.getIdUser()));
      lElements.getValue().put("idImageIcon", JSONMapper.toJSON(user.getIdImageIcon()));
      lElements.getValue().put("birthDate", JSONMapper.toJSON(user.getBirthDate()));
      lElements.getValue().put("userName", JSONMapper.toJSON(user.getUserName()));
      lElements.getValue().put("email", JSONMapper.toJSON(user.getEmail()));
      lElements.getValue().put("idBlog", JSONMapper.toJSON(user.getIdBlog()));
      lElements.getValue().put("lastLogin", JSONMapper.toJSON(user.getLastLogin()));
      lElements.getValue().put("registrationDate",
        JSONMapper.toJSON(user.getRegistrationDate()));
      return lElements;
  } else {
      throw new MapperException();
  }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.