public void endElement()

in iam/src/main/java/org/jclouds/iam/xml/UserHandler.java [56:69]


   public void endElement(String uri, String name, String qName) {
      if (qName.equals("Path")) {
         builder.path(currentOrNull(currentText));
      } else if (qName.equals("UserName")) {
         builder.name(currentOrNull(currentText));
      } else if (qName.equals("UserId")) {
         builder.id(currentOrNull(currentText));
      } else if (qName.equals("Arn")) {
         builder.arn(currentOrNull(currentText));
      } else if (qName.equals("CreateDate")) {
         builder.createDate(dateService.iso8601SecondsDateParse(currentOrNull(currentText)));
      }
      currentText.setLength(0);
   }