/tests/com/google/appengine/datanucleus/test/HasVersionWithFieldJDO.java

http://datanucleus-appengine.googlecode.com/ · Java · 59 lines · 33 code · 8 blank · 18 comment · 0 complexity · ac4f004ed1d394167630aaa9466ec65b MD5 · raw file

  1. /**********************************************************************
  2. Copyright (c) 2009 Google Inc.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. **********************************************************************/
  13. package com.google.appengine.datanucleus.test;
  14. import javax.jdo.annotations.Extension;
  15. import javax.jdo.annotations.IdGeneratorStrategy;
  16. import javax.jdo.annotations.IdentityType;
  17. import javax.jdo.annotations.PersistenceCapable;
  18. import javax.jdo.annotations.Persistent;
  19. import javax.jdo.annotations.PrimaryKey;
  20. import javax.jdo.annotations.Version;
  21. import javax.jdo.annotations.VersionStrategy;
  22. /**
  23. * @author Max Ross <maxr@google.com>
  24. */
  25. @PersistenceCapable(identityType = IdentityType.APPLICATION)
  26. @Version(
  27. strategy = VersionStrategy.VERSION_NUMBER,
  28. extensions = {@Extension(vendorName="datanucleus", key="field-name", value="versionField")})
  29. public class HasVersionWithFieldJDO {
  30. @PrimaryKey
  31. @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
  32. private Long id;
  33. @Persistent
  34. private String value;
  35. private long versionField;
  36. public Long getId() {
  37. return id;
  38. }
  39. public long getVersion() {
  40. return versionField;
  41. }
  42. public String getValue() {
  43. return value;
  44. }
  45. public void setValue(String value) {
  46. this.value = value;
  47. }
  48. }