Skip to content

Instantly share code, notes, and snippets.

@digvijaybhakuni
Created August 4, 2014 18:32
Show Gist options
  • Save digvijaybhakuni/a7a6f0ab0d530aa9db7d to your computer and use it in GitHub Desktop.
Save digvijaybhakuni/a7a6f0ab0d530aa9db7d to your computer and use it in GitHub Desktop.
public class SerializableObject implements java.io.Serializable{
public String name;
public String address;
//This Property Will not persist as it's mark as transient property.
public transient String age;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment