/tests/com/google/appengine/datanucleus/test/InTheHouseJPA.java
Java | 43 lines | 18 code | 5 blank | 20 comment | 0 complexity | 390e3624b84c31586897d03fb96752f0 MD5 | raw file
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 */ 16package com.google.appengine.datanucleus.test; 17 18import com.google.appengine.api.datastore.Key; 19 20import javax.persistence.Entity; 21import javax.persistence.GeneratedValue; 22import javax.persistence.GenerationType; 23import javax.persistence.Id; 24 25/** 26 * DataNucleus has historically had problems with classes beginning with 'In' 27 * 28 * @author Max Ross <max.ross@gmail.com> 29 */ 30@Entity 31public class InTheHouseJPA { 32 @Id 33 @GeneratedValue(strategy=GenerationType.IDENTITY) 34 private Key id; 35 36 public Key getId() { 37 return id; 38 } 39 40 public void setId(Key id) { 41 this.id = id; 42 } 43}