Uses of Class
com.atlassian.jira.util.json.JSONException

Packages that use JSONException
com.atlassian.jira.functest.framework.admin.plugins   
com.atlassian.jira.util.json   
com.atlassian.jira.webtests.ztests.bundledplugins2.rest   
com.atlassian.jira.webtests.ztests.misc   
com.atlassian.jira.webtests.ztests.plugin.reloadable.disabling   
com.atlassian.jira.webtests.ztests.plugin.reloadable.enabling   
 

Uses of JSONException in com.atlassian.jira.functest.framework.admin.plugins
 

Methods in com.atlassian.jira.functest.framework.admin.plugins that throw JSONException
 JSONObject RestResources.EndPoint.get()
          Invoke the GET HTTP method on this resource.
 

Uses of JSONException in com.atlassian.jira.util.json
 

Methods in com.atlassian.jira.util.json that throw JSONException
 JSONObject JSONObject.accumulate(String key, Object value)
          Accumulate values under a key.
 JSONObject JSONObject.append(String key, Object value)
          Append values to the array under a key.
 Object JSONArray.get(int index)
          Get the object value associated with an index.
 Object JSONObject.get(String key)
          Get the value object associated with a key.
 boolean JSONArray.getBoolean(int index)
          Get the boolean value associated with an index.
 boolean JSONObject.getBoolean(String key)
          Get the boolean value associated with a key.
 double JSONArray.getDouble(int index)
          Get the double value associated with an index.
 double JSONObject.getDouble(String key)
          Get the double value associated with a key.
 int JSONArray.getInt(int index)
          Get the int value associated with an index.
 int JSONObject.getInt(String key)
          Get the int value associated with a key.
 JSONArray JSONArray.getJSONArray(int index)
          Get the JSONArray associated with an index.
 JSONArray JSONObject.getJSONArray(String key)
          Get the JSONArray value associated with a key.
 JSONObject JSONArray.getJSONObject(int index)
          Get the JSONObject associated with an index.
 JSONObject JSONObject.getJSONObject(String key)
          Get the JSONObject value associated with a key.
 long JSONArray.getLong(int index)
          Get the long value associated with an index.
 long JSONObject.getLong(String key)
          Get the long value associated with a key.
 String JSONArray.getString(int index)
          Get the string associated with an index.
 String JSONObject.getString(String key)
          Get the string associated with a key.
 String JSONArray.join(String separator)
          Make a string from the contents of this JSONArray.
 char JSONTokener.next(char c)
          Consume the next character, and check that it matches a specified character.
 String JSONTokener.next(int n)
          Get the next n characters.
 char JSONTokener.nextClean()
          Get the next char in the string, skipping whitespace and comments (slashslash, slashstar, and hash).
 String JSONTokener.nextString(char quote)
          Return the characters up to the next close quote character.
 Object JSONTokener.nextValue()
          Get the next value.
static String JSONObject.numberToString(Number n)
          Produce a string from a Number.
 JSONArray JSONArray.put(double value)
          Append a double value.
 JSONArray JSONArray.put(int index, boolean value)
          Put or replace a boolean value in the JSONArray.
 JSONArray JSONArray.put(int index, Collection<? extends Object> value)
          Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.
 JSONArray JSONArray.put(int index, double value)
          Put or replace a double value.
 JSONArray JSONArray.put(int index, int value)
          Put or replace an int value.
 JSONArray JSONArray.put(int index, long value)
          Put or replace a long value.
 JSONArray JSONArray.put(int index, Map<String,Object> value)
          Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
 JSONArray JSONArray.put(int index, Object value)
          Put or replace an object value in the JSONArray.
 JSONObject JSONObject.put(String key, boolean value)
          Put a key/boolean pair in the JSONObject.
 JSONObject JSONObject.put(String key, Collection<Object> values)
          Put a key/value pair in the JSONObject, where the value will be a JSONArray which is produced from a Collection.
 JSONObject JSONObject.put(String key, double value)
          Put a key/double pair in the JSONObject.
 JSONObject JSONObject.put(String key, int value)
          Put a key/int pair in the JSONObject.
 JSONObject JSONObject.put(String key, long value)
          Put a key/long pair in the JSONObject.
 JSONObject JSONObject.put(String key, Map<String,Object> value)
          Put a key/value pair in the JSONObject, where the value will be a JSONObject which is produced from a Map.
 JSONObject JSONObject.put(String key, Object value)
          Put a key/value pair in the JSONObject.
 JSONObject JSONObject.putOpt(String key, Object value)
          Put a key/value pair in the JSONObject, but only if the key and the value are both non-null.
 void JSONTokener.syntaxError(String message)
          Make a JSONException to signal a syntax error.
 JSONArray JSONObject.toJSONArray(JSONArray names)
          Produce a JSONArray containing the values of the members of this JSONObject.
 JSONObject JSONArray.toJSONObject(JSONArray names)
          Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.
 String JSONArray.toString(int indentFactor)
          Make a prettyprinted JSON text of this JSONArray.
 String JSONObject.toString(int indentFactor)
          Make a pretty-printed JSON text of this JSONObject.
 Writer JSONArray.write(Writer writer)
          Write the contents of the JSONArray as JSON text to a writer.
 Writer JSONObject.write(Writer writer)
          Write the contents of the JSONObject as JSON text to a writer.
 

Constructors in com.atlassian.jira.util.json that throw JSONException
JSONArray(JSONTokener x)
          Construct a JSONArray from a JSONTokener.
JSONArray(Object array)
          Construct a JSONArray from an array
JSONArray(String source)
          Construct a JSONArray from a source JSON text.
JSONObject(JSONObject jo, String[] names)
          Construct a JSONObject from a subset of another JSONObject.
JSONObject(JSONTokener x)
          Construct a JSONObject from a JSONTokener.
JSONObject(String source)
          Construct a JSONObject from a source JSON text string.
 

Uses of JSONException in com.atlassian.jira.webtests.ztests.bundledplugins2.rest
 

Methods in com.atlassian.jira.webtests.ztests.bundledplugins2.rest that throw JSONException
 JSONObject RestFuncTest.getJSON(String url, String... expand)
           
 void TestAttachTemporaryFileResource.testAttachmentsDisabled()
           
 void TestAttachTemporaryFileResource.testBadXsrfAttach()
           
 void TestAttachTemporaryFileResource.testNoAttachPermission()
           
 

Uses of JSONException in com.atlassian.jira.webtests.ztests.misc
 

Methods in com.atlassian.jira.webtests.ztests.misc that throw JSONException
 void TestPlatformCompatibility.testCtk()
           
 

Uses of JSONException in com.atlassian.jira.webtests.ztests.plugin.reloadable.disabling
 

Methods in com.atlassian.jira.webtests.ztests.plugin.reloadable.disabling that throw JSONException
 void TestRestModuleTypeDisabling.testShouldBeReachableAfterEnablingItBackAgain()
          Tries to enable the rest resources module after disabling it and then assert that the resource is reachable again and returns the expected response (it has been "reloaded").
 void TestRestModuleTypeDisabling.testShouldBeReachableAfterEnablingTheReferencePluginBackAgain()
          Tries to enable the whole plugin after disabling it and then assert that the resource is reachable again and returns the expected response (it has been "reloaded").
 void TestRestModuleTypeDisabling.testShouldNotBeReachableAfterBeingDisabled()
           
 void TestRestModuleTypeDisabling.testShouldNotBeReachableAfterDisablingTheReferencePlugin()
           
 

Uses of JSONException in com.atlassian.jira.webtests.ztests.plugin.reloadable.enabling
 

Methods in com.atlassian.jira.webtests.ztests.plugin.reloadable.enabling that throw JSONException
 void TestRestModuleEnabling.testShouldBeReachableAfterEnablingTheReferencePlugin()
           
 



Copyright © 2002-2012 Atlassian. All Rights Reserved.