PageRenderTime 24ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://datanucleus-appengine.googlecode.com/
Java | 43 lines | 18 code | 5 blank | 20 comment | 0 complexity | 390e3624b84c31586897d03fb96752f0 MD5 | raw file
Possible License(s): Apache-2.0
  1. /*
  2. * Copyright (C) 2010 Google Inc
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.google.appengine.datanucleus.test;
  17. import com.google.appengine.api.datastore.Key;
  18. import javax.persistence.Entity;
  19. import javax.persistence.GeneratedValue;
  20. import javax.persistence.GenerationType;
  21. import javax.persistence.Id;
  22. /**
  23. * DataNucleus has historically had problems with classes beginning with 'In'
  24. *
  25. * @author Max Ross <max.ross@gmail.com>
  26. */
  27. @Entity
  28. public class InTheHouseJPA {
  29. @Id
  30. @GeneratedValue(strategy=GenerationType.IDENTITY)
  31. private Key id;
  32. public Key getId() {
  33. return id;
  34. }
  35. public void setId(Key id) {
  36. this.id = id;
  37. }
  38. }