Details

    • Type: Wish Wish
    • Status: Closed Closed
    • Priority: Major Major
    • Resolution: Duplicate
    • Affects Version/s: None
    • Fix Version/s: None
    • Component/s: None
    • Labels:
      None

      Description

      I would like to see an attempt to obfuscate the field names being passed in the xml

      i.e
      object
      int stupidlyLongFieldName=1;
      boolean anotherRediculouslyLongFieldName=false;
      String outrageouslyLongFieldName="text";

      toXML
      <object>
      <stupidlyLongFieldName>0</stupidlyLongFieldName>
      <anotherRediculouslyLongFieldName>false</anotherRediculouslyLongFieldName>
      <outrageouslyLongFieldName>text</outrageouslyLongFieldName>
      </object>

      obfuscated toXML
      <object>
      <1>0</1>
      <2>false</2>
      <3>text</3>
      </object>

      If primitive field filtering was available (I believe someone has already expressed a wish for this feature)

      toXML
      <object>
      <stupidlyLongFieldName>0</stupidlyLongFieldName>
      <outrageouslyLongFieldName>text</outrageouslyLongFieldName>
      </object>

      obfuscated toXML
      <object>
      <1>0</1>
      <3>text</3>
      </object>

      anotherRediculouslyLongFieldName is missing from the xml as it is the default for int.

      Justin Birch

        Issue Links

          People

          • Assignee:
            Unassigned
            Reporter:
            Justin Birch
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: