Lines Matching defs:_map

67     private Map _map = new HashMap();
75 _map.put(Token.class, JSONTokenMarshaller.class);
76 _map.put(Boolean.class, JSONBooleanMarshaller.class);
77 _map.put(String.class, JSONStringMarshaller.class);
78 _map.put(String[].class, JSONStringArrayMarshaller.class);
79 _map.put(UserDetails.class, JSONUserDetailsMarshaller.class);
80 _map.put(IdentityDetails.class, JSONIdentityDetailsMarshaller.class);
81 _map.put(Throwable.class, JSONThrowableMarshaller.class);
82 _map.put(GeneralFailure.class, JSONThrowableMarshaller.class);
83 _map.put(Throwable.class, JSONThrowableMarshaller.class);
84 _map.put(ObjectNotFound.class, JSONThrowableMarshaller.class);
85 _map.put(GeneralFailure.class, JSONThrowableMarshaller.class);
87 _map.put(Token.class, XMLTokenMarshaller.class);
88 _map.put(UserDetails.class, XMLUserDetailsMarshaller.class);
89 _map.put(Boolean.class, XMLBooleanMarshaller.class);
90 _map.put(String.class, XMLStringMarshaller.class);
91 _map.put(String[].class, XMLStringArrayMarshaller.class);
92 _map.put(IdentityDetails.class, XMLIdentityDetailsMarshaller.class);
93 _map.put(List.class, PropertiesListMarshaller.class);
94 _map.put(GeneralFailure.class, XMLGeneralFailureMarshaller.class);
95 _map.put(ObjectNotFound.class, XMLObjectNotFoundMarshaller.class);
96 _map.put(Throwable.class, XMLThrowableMarshaller.class);
98 _map.put(Token.class, PropertiesTokenMarshaller.class);
99 _map.put(UserDetails.class, PropertiesUserDetailsMarshaller.class);
100 _map.put(Boolean.class, PropertiesBooleanMarshaller.class);
101 _map.put(String.class, PropertiesStringMarshaller.class);
102 _map.put(String[].class, PropertiesStringArrayMarshaller.class);
103 _map.put(IdentityDetails.class,
105 _map.put(IdentityDetails[].class,
107 _map.put(List.class, PropertiesListMarshaller.class);
108 _map.put(GeneralFailure.class,
110 _map.put(ObjectNotFound.class,
112 _map.put(Throwable.class, PropertiesThrowableMarshaller.class);
120 return _map;
126 if (_map == null) {
127 _map = getMarshallerMap();
129 Class clazz = (Class) _map.get(type);