package example; import javax.jdo.annotations.*; @PersistenceCapable public class Person { @Field private final String name; @Transient private String currentLocation = "nowhere"; public Person(String name) { this.name = name; } public String getName() { return name; } public String getCurrentLocation() { return currentLocation; } public void setCurrentLocation(String currentLocation) { this.currentLocation = currentLocation; } }