1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 2<!-- NewPage --> 3<html lang="en"> 4<head> 5<!-- Generated by javadoc (version 1.7.0_25) on Wed Nov 13 20:23:19 PST 2013 --> 6<meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> 7<title>JsonIgnoreProperties (Jackson-annotations 2.3.0 API)</title> 8<meta name="date" content="2013-11-13"> 9<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> 10</head> 11<body> 12<script type="text/javascript"><!-- 13 if (location.href.indexOf('is-external=true') == -1) { 14 parent.document.title="JsonIgnoreProperties (Jackson-annotations 2.3.0 API)"; 15 } 16//--> 17</script> 18<noscript> 19<div>JavaScript is disabled on your browser.</div> 20</noscript> 21<!-- ========= START OF TOP NAVBAR ======= --> 22<div class="topNav"><a name="navbar_top"> 23<!-- --> 24</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> 25<!-- --> 26</a> 27<ul class="navList" title="Navigation"> 28<li><a href="../../../../com/fasterxml/jackson/annotation/package-summary.html">Package</a></li> 29<li class="navBarCell1Rev">Class</li> 30<li><a href="class-use/JsonIgnoreProperties.html">Use</a></li> 31<li><a href="package-tree.html">Tree</a></li> 32<li><a href="../../../../deprecated-list.html">Deprecated</a></li> 33<li><a href="../../../../index-all.html">Index</a></li> 34<li><a href="../../../../help-doc.html">Help</a></li> 35</ul> 36</div> 37<div class="subNav"> 38<ul class="navList"> 39<li><a href="../../../../com/fasterxml/jackson/annotation/JsonIgnore.html" title="annotation in com.fasterxml.jackson.annotation"><span class="strong">Prev Class</span></a></li> 40<li><a href="../../../../com/fasterxml/jackson/annotation/JsonIgnoreType.html" title="annotation in com.fasterxml.jackson.annotation"><span class="strong">Next Class</span></a></li> 41</ul> 42<ul class="navList"> 43<li><a href="../../../../index.html?com/fasterxml/jackson/annotation/JsonIgnoreProperties.html" target="_top">Frames</a></li> 44<li><a href="JsonIgnoreProperties.html" target="_top">No Frames</a></li> 45</ul> 46<ul class="navList" id="allclasses_navbar_top"> 47<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> 48</ul> 49<div> 50<script type="text/javascript"><!-- 51 allClassesLink = document.getElementById("allclasses_navbar_top"); 52 if(window==top) { 53 allClassesLink.style.display = "block"; 54 } 55 else { 56 allClassesLink.style.display = "none"; 57 } 58 //--> 59</script> 60</div> 61<div> 62<ul class="subNavList"> 63<li>Summary: </li> 64<li>Required | </li> 65<li><a href="#annotation_type_optional_element_summary">Optional</a></li> 66</ul> 67<ul class="subNavList"> 68<li>Detail: </li> 69<li><a href="#annotation_type_element_detail">Element</a></li> 70</ul> 71</div> 72<a name="skip-navbar_top"> 73<!-- --> 74</a></div> 75<!-- ========= END OF TOP NAVBAR ========= --> 76<!-- ======== START OF CLASS DATA ======== --> 77<div class="header"> 78<div class="subTitle">com.fasterxml.jackson.annotation</div> 79<h2 title="Annotation Type JsonIgnoreProperties" class="title">Annotation Type JsonIgnoreProperties</h2> 80</div> 81<div class="contentContainer"> 82<div class="description"> 83<ul class="blockList"> 84<li class="blockList"> 85<hr> 86<br> 87<pre><a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/Target.html?is-external=true#value()" title="class or interface in java.lang.annotation">value</a>={<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#ANNOTATION_TYPE" title="class or interface in java.lang.annotation">ANNOTATION_TYPE</a>,<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#TYPE" title="class or interface in java.lang.annotation">TYPE</a>,<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#METHOD" title="class or interface in java.lang.annotation">METHOD</a>,<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#CONSTRUCTOR" title="class or interface in java.lang.annotation">CONSTRUCTOR</a>,<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#FIELD" title="class or interface in java.lang.annotation">FIELD</a>}) 88<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/Retention.html?is-external=true" title="class or interface in java.lang.annotation">@Retention</a>(<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/Retention.html?is-external=true#value()" title="class or interface in java.lang.annotation">value</a>=<a href="http://download.oracle.com/javase/6/docs/api/java/lang/annotation/RetentionPolicy.html?is-external=true#RUNTIME" title="class or interface in java.lang.annotation">RUNTIME</a>) 89public @interface <span class="strong">JsonIgnoreProperties</span></pre> 90<div class="block">Annotation that can be used to either suppress serialization of 91 properties (during serialization), or ignore processing of 92 JSON properties read (during deserialization). 93<p> 94 Example: 95<pre> 96 // to prevent specified fields from being serialized or deserialized 97 // (i.e. not include in JSON output; or being set even if they were included) 98 @JsonIgnoreProperties({ "internalId", "secretKey" }) 99 // To ignore any unknown properties in JSON input without exception: 100 @JsonIgnoreProperties(ignoreUnknown=true) 101</pre> 102<p> 103 Starting with 2.0, this annotation can be applied both to classes and 104 to properties. If used for both, actual set will be union of all 105 ignorals: that is, you can only add properties to ignore, not remove 106 or override. So you can not remove properties to ignore using 107 per-property annotation.</div> 108</li> 109</ul> 110</div> 111<div class="summary"> 112<ul class="blockList"> 113<li class="blockList"> 114<!-- =========== ANNOTATION TYPE OPTIONAL MEMBER SUMMARY =========== --> 115<ul class="blockList"> 116<li class="blockList"><a name="annotation_type_optional_element_summary"> 117<!-- --> 118</a> 119<h3>Optional Element Summary</h3> 120<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Optional Element Summary table, listing optional elements, and an explanation"> 121<caption><span>Optional Elements</span><span class="tabEnd"> </span></caption> 122<tr> 123<th class="colFirst" scope="col">Modifier and Type</th> 124<th class="colLast" scope="col">Optional Element and Description</th> 125</tr> 126<tr class="altColor"> 127<td class="colFirst"><code>boolean</code></td> 128<td class="colLast"><code><strong><a href="../../../../com/fasterxml/jackson/annotation/JsonIgnoreProperties.html#ignoreUnknown()">ignoreUnknown</a></strong></code> 129<div class="block">Property that defines whether it is ok to just ignore any 130 unrecognized properties during deserialization.</div> 131</td> 132</tr> 133<tr class="rowColor"> 134<td class="colFirst"><code><a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]</code></td> 135<td class="colLast"><code><strong><a href="../../../../com/fasterxml/jackson/annotation/JsonIgnoreProperties.html#value()">value</a></strong></code> 136<div class="block">Names of properties to ignore.</div> 137</td> 138</tr> 139</table> 140</li> 141</ul> 142</li> 143</ul> 144</div> 145<div class="details"> 146<ul class="blockList"> 147<li class="blockList"> 148<!-- ============ ANNOTATION TYPE MEMBER DETAIL =========== --> 149<ul class="blockList"> 150<li class="blockList"><a name="annotation_type_element_detail"> 151<!-- --> 152</a> 153<h3>Element Detail</h3> 154<a name="value()"> 155<!-- --> 156</a> 157<ul class="blockList"> 158<li class="blockList"> 159<h4>value</h4> 160<pre>public abstract <a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] value</pre> 161<div class="block">Names of properties to ignore.</div> 162<dl> 163<dt>Default:</dt> 164<dd>{}</dd> 165</dl> 166</li> 167</ul> 168<a name="ignoreUnknown()"> 169<!-- --> 170</a> 171<ul class="blockListLast"> 172<li class="blockList"> 173<h4>ignoreUnknown</h4> 174<pre>public abstract boolean ignoreUnknown</pre> 175<div class="block">Property that defines whether it is ok to just ignore any 176 unrecognized properties during deserialization. 177 If true, all properties that are unrecognized -- that is, 178 there are no setters or creators that accept them -- are 179 ignored without warnings (although handlers for unknown 180 properties, if any, will still be called) without 181 exception. 182<p> 183 Does not have any effect on serialization.</div> 184<dl> 185<dt>Default:</dt> 186<dd>false</dd> 187</dl> 188</li> 189</ul> 190</li> 191</ul> 192</li> 193</ul> 194</div> 195</div> 196<!-- ========= END OF CLASS DATA ========= --> 197<!-- ======= START OF BOTTOM NAVBAR ====== --> 198<div class="bottomNav"><a name="navbar_bottom"> 199<!-- --> 200</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> 201<!-- --> 202</a> 203<ul class="navList" title="Navigation"> 204<li><a href="../../../../com/fasterxml/jackson/annotation/package-summary.html">Package</a></li> 205<li class="navBarCell1Rev">Class</li> 206<li><a href="class-use/JsonIgnoreProperties.html">Use</a></li> 207<li><a href="package-tree.html">Tree</a></li> 208<li><a href="../../../../deprecated-list.html">Deprecated</a></li> 209<li><a href="../../../../index-all.html">Index</a></li> 210<li><a href="../../../../help-doc.html">Help</a></li> 211</ul> 212</div> 213<div class="subNav"> 214<ul class="navList"> 215<li><a href="../../../../com/fasterxml/jackson/annotation/JsonIgnore.html" title="annotation in com.fasterxml.jackson.annotation"><span class="strong">Prev Class</span></a></li> 216<li><a href="../../../../com/fasterxml/jackson/annotation/JsonIgnoreType.html" title="annotation in com.fasterxml.jackson.annotation"><span class="strong">Next Class</span></a></li> 217</ul> 218<ul class="navList"> 219<li><a href="../../../../index.html?com/fasterxml/jackson/annotation/JsonIgnoreProperties.html" target="_top">Frames</a></li> 220<li><a href="JsonIgnoreProperties.html" target="_top">No Frames</a></li> 221</ul> 222<ul class="navList" id="allclasses_navbar_bottom"> 223<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> 224</ul> 225<div> 226<script type="text/javascript"><!-- 227 allClassesLink = document.getElementById("allclasses_navbar_bottom"); 228 if(window==top) { 229 allClassesLink.style.display = "block"; 230 } 231 else { 232 allClassesLink.style.display = "none"; 233 } 234 //--> 235</script> 236</div> 237<div> 238<ul class="subNavList"> 239<li>Summary: </li> 240<li>Required | </li> 241<li><a href="#annotation_type_optional_element_summary">Optional</a></li> 242</ul> 243<ul class="subNavList"> 244<li>Detail: </li> 245<li><a href="#annotation_type_element_detail">Element</a></li> 246</ul> 247</div> 248<a name="skip-navbar_bottom"> 249<!-- --> 250</a></div> 251<!-- ======== END OF BOTTOM NAVBAR ======= --> 252<p class="legalCopy"><small>Copyright © 2012-2013 <a href="http://fasterxml.com/">FasterXML</a>. All Rights Reserved.</small></p> 253</body> 254</html> 255