Searched refs:marshall (Results 1 - 6 of 6) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idsvcs/rest/
H A DMarshaller.java45 void marshall(Writer wrt, Object value) throws Exception; method in interface:Marshaller
H A DMarshallerFactory.java154 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLTokenMarshaller
160 marshall(xwrt, (Token)value);
163 public void marshall(XMLStreamWriter wrt, Token value) method in class:MarshallerFactory.XMLTokenMarshaller
177 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLAttributeMarshaller
183 marshall(xwrt, (Attribute) value);
186 public void marshall(XMLStreamWriter wrt, Attribute attr) method in class:MarshallerFactory.XMLAttributeMarshaller
208 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLGeneralFailureMarshaller
214 marshall(xwrt, (GeneralFailure)value);
218 public void marshall(XMLStreamWriter wrt, GeneralFailure gf) method in class:MarshallerFactory.XMLGeneralFailureMarshaller
241 public void marshall(Write method in class:MarshallerFactory.XMLThrowableMarshaller
253 public void marshall(XMLStreamWriter wrt, Throwable thr) method in class:MarshallerFactory.XMLThrowableMarshaller
272 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLObjectNotFoundMarshaller
285 public void marshall(XMLStreamWriter wrt, ObjectNotFound onf) method in class:MarshallerFactory.XMLObjectNotFoundMarshaller
302 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLUserDetailsMarshaller
312 public void marshall(XMLStreamWriter wrt, UserDetails value) method in class:MarshallerFactory.XMLUserDetailsMarshaller
349 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLIdentityDetailsMarshaller
361 public void marshall(XMLStreamWriter wrt, IdentityDetails value) method in class:MarshallerFactory.XMLIdentityDetailsMarshaller
441 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLListMarshaller
455 public void marshall(XMLStreamWriter wrt, List value) method in class:MarshallerFactory.XMLListMarshaller
485 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLBooleanMarshaller
494 public void marshall(XMLStreamWriter wrt, Boolean value) method in class:MarshallerFactory.XMLBooleanMarshaller
510 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLStringMarshaller
524 public void marshall(XMLStreamWriter wrt, String value) method in class:MarshallerFactory.XMLStringMarshaller
537 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLStringArrayMarshaller
551 public void marshall(XMLStreamWriter wrt, String value[]) method in class:MarshallerFactory.XMLStringArrayMarshaller
574 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONTokenMarshaller
588 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONBooleanMarshaller
601 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONStringMarshaller
614 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONStringArrayMarshaller
628 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONUserDetailsMarshaller
667 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONAttributeMarshaller
692 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONIdentityDetailsMarshaller
754 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONThrowableMarshaller
783 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesTokenMarshaller
788 public void marshall(PrintWriter wrt, String prefix, Token value) method in class:MarshallerFactory.PropertiesTokenMarshaller
802 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesAttributeMarshaller
807 public void marshall(PrintWriter wrt, String prefix, Attribute attr) method in class:MarshallerFactory.PropertiesAttributeMarshaller
829 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesUserDetailsMarshaller
834 public void marshall(PrintWriter wrt, String prefix, UserDetails ud) method in class:MarshallerFactory.PropertiesUserDetailsMarshaller
869 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesIdentityDetailsMarshaller
876 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesIdentityDetailsMarshaller
953 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesIdentityDetailsArrayMarshaller
960 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesIdentityDetailsArrayMarshaller
983 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesListMarshaller
990 public void marshall(PrintWriter wrt, String prefix, List value) method in class:MarshallerFactory.PropertiesListMarshaller
1016 public void marshall(Writer wrt, Object value) { method in class:MarshallerFactory.PropertiesGeneralFailureMarshaller
1021 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesGeneralFailureMarshaller
1044 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesThrowableMarshaller
1050 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesThrowableMarshaller
1073 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesObjectNotFoundMarshaller
1079 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesObjectNotFoundMarshaller
1100 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesBooleanMarshaller
1105 public void marshall(PrintWriter wrt, String prefix, Boolean value) method in class:MarshallerFactory.PropertiesBooleanMarshaller
1119 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesStringMarshaller
1127 public void marshall(PrintWriter wrt, String prefix, String value) method in class:MarshallerFactory.PropertiesStringMarshaller
1142 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesStringArrayMarshaller
1150 public void marshall(PrintWriter wrt, String prefix, String[] value) method in class:MarshallerFactory.PropertiesStringArrayMarshaller
[all...]
H A DIdentityServicesHandler.java66 * Provides a marshall/unmarshall layer to the Security interface.
630 mar.newInstance(Throwable.class).marshall(wrt,
637 // marshall the response..
639 mar.newInstance(method.type).marshall(wrt, value);
653 mar.newInstance(ObjectNotFound.class).marshall(wrt, ex);
665 mar.newInstance(GeneralFailure.class).marshall(wrt, ex);
677 mar.newInstance(Throwable.class).marshall(wrt, e);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idsvcs/rest/
H A DMarshaller.java45 void marshall(Writer wrt, Object value) throws Exception; method in interface:Marshaller
H A DMarshallerFactory.java154 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLTokenMarshaller
160 marshall(xwrt, (Token)value);
163 public void marshall(XMLStreamWriter wrt, Token value) method in class:MarshallerFactory.XMLTokenMarshaller
177 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLAttributeMarshaller
183 marshall(xwrt, (Attribute) value);
186 public void marshall(XMLStreamWriter wrt, Attribute attr) method in class:MarshallerFactory.XMLAttributeMarshaller
208 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLGeneralFailureMarshaller
214 marshall(xwrt, (GeneralFailure)value);
218 public void marshall(XMLStreamWriter wrt, GeneralFailure gf) method in class:MarshallerFactory.XMLGeneralFailureMarshaller
241 public void marshall(Write method in class:MarshallerFactory.XMLThrowableMarshaller
253 public void marshall(XMLStreamWriter wrt, Throwable thr) method in class:MarshallerFactory.XMLThrowableMarshaller
272 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLObjectNotFoundMarshaller
285 public void marshall(XMLStreamWriter wrt, ObjectNotFound onf) method in class:MarshallerFactory.XMLObjectNotFoundMarshaller
302 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLUserDetailsMarshaller
312 public void marshall(XMLStreamWriter wrt, UserDetails value) method in class:MarshallerFactory.XMLUserDetailsMarshaller
349 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLIdentityDetailsMarshaller
361 public void marshall(XMLStreamWriter wrt, IdentityDetails value) method in class:MarshallerFactory.XMLIdentityDetailsMarshaller
441 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLListMarshaller
455 public void marshall(XMLStreamWriter wrt, List value) method in class:MarshallerFactory.XMLListMarshaller
485 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.XMLBooleanMarshaller
494 public void marshall(XMLStreamWriter wrt, Boolean value) method in class:MarshallerFactory.XMLBooleanMarshaller
510 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLStringMarshaller
524 public void marshall(XMLStreamWriter wrt, String value) method in class:MarshallerFactory.XMLStringMarshaller
537 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.XMLStringArrayMarshaller
551 public void marshall(XMLStreamWriter wrt, String value[]) method in class:MarshallerFactory.XMLStringArrayMarshaller
574 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONTokenMarshaller
588 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONBooleanMarshaller
601 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONStringMarshaller
614 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONStringArrayMarshaller
628 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONUserDetailsMarshaller
667 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONAttributeMarshaller
692 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONIdentityDetailsMarshaller
754 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.JSONThrowableMarshaller
783 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesTokenMarshaller
788 public void marshall(PrintWriter wrt, String prefix, Token value) method in class:MarshallerFactory.PropertiesTokenMarshaller
802 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesAttributeMarshaller
807 public void marshall(PrintWriter wrt, String prefix, Attribute attr) method in class:MarshallerFactory.PropertiesAttributeMarshaller
829 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesUserDetailsMarshaller
834 public void marshall(PrintWriter wrt, String prefix, UserDetails ud) method in class:MarshallerFactory.PropertiesUserDetailsMarshaller
869 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesIdentityDetailsMarshaller
876 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesIdentityDetailsMarshaller
953 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesIdentityDetailsArrayMarshaller
960 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesIdentityDetailsArrayMarshaller
983 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesListMarshaller
990 public void marshall(PrintWriter wrt, String prefix, List value) method in class:MarshallerFactory.PropertiesListMarshaller
1016 public void marshall(Writer wrt, Object value) { method in class:MarshallerFactory.PropertiesGeneralFailureMarshaller
1021 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesGeneralFailureMarshaller
1044 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesThrowableMarshaller
1050 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesThrowableMarshaller
1073 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesObjectNotFoundMarshaller
1079 public void marshall(PrintWriter wrt, String prefix, method in class:MarshallerFactory.PropertiesObjectNotFoundMarshaller
1100 public void marshall(Writer wrt, Object value) throws Exception { method in class:MarshallerFactory.PropertiesBooleanMarshaller
1105 public void marshall(PrintWriter wrt, String prefix, Boolean value) method in class:MarshallerFactory.PropertiesBooleanMarshaller
1119 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesStringMarshaller
1127 public void marshall(PrintWriter wrt, String prefix, String value) method in class:MarshallerFactory.PropertiesStringMarshaller
1142 public void marshall(Writer wrt, Object value) method in class:MarshallerFactory.PropertiesStringArrayMarshaller
1150 public void marshall(PrintWriter wrt, String prefix, String[] value) method in class:MarshallerFactory.PropertiesStringArrayMarshaller
[all...]
H A DIdentityServicesHandler.java66 * Provides a marshall/unmarshall layer to the Security interface.
630 mar.newInstance(Throwable.class).marshall(wrt,
637 // marshall the response..
639 mar.newInstance(method.type).marshall(wrt, value);
653 mar.newInstance(ObjectNotFound.class).marshall(wrt, ex);
665 mar.newInstance(GeneralFailure.class).marshall(wrt, ex);
677 mar.newInstance(Throwable.class).marshall(wrt, e);

Completed in 71 milliseconds