100101102103104105106107108109110
{ return subset.get(0); } else if (subset.size() > 1) { throw new ResourceException("Ambiguous name [" + name + "], full type signature required"); } else { return null; }
175176177178179180181182183184185
{ return getJavaType().getQualifiedName(); } catch (FileNotFoundException e) { throw new ResourceException(e); } catch (Exception e) { return getName(); }
4344454647484950
return reader.read(); } } catch (Exception e) { throw new ResourceException(e); } }
5960616263646566
return reader.readArray(); } } catch (Exception e) { throw new ResourceException(e); } }
7576777879808182
return reader.readObject(); } } catch (Exception e) { throw new ResourceException(e); } }
93949596979899100101
setContents(reader.readObject()); } } catch (Exception e) { throw new ResourceException(e); } return this; }
122123124125126127128129130
writer.write(structure); } } catch (IOException e) { throw new ResourceException(e); } return this; }
return reader.read(); } } catch (Exception e) { throw new ResourceException("Error while getting the Json structure", e); } }
return reader.readArray(); } } catch (Exception e) { throw new ResourceException("Error while getting the Json array", e); } }
return reader.readObject(); } } catch (Exception e) { throw new ResourceException("Error while getting the Json object", e); } }