applicationStub.js 370 B

1234567891011121314151617
  1. applicationStub_parameter = {};
  2. function applicationStub_list() {
  3. $('#content').html('');
  4. $('#result').html('');
  5. $.ajax({
  6. type : 'get',
  7. dataType : 'json',
  8. url : '../jaxrs/applicationstub/list',
  9. xhrFields : {
  10. 'withCredentials' : true
  11. },
  12. crossDomain : true
  13. }).always(function(json) {
  14. $('#result').html(JSON.stringify(json, null, 4));
  15. });
  16. }