This project has retired. For details please refer to its Attic page.
TempKey xref
View Javadoc
1   package org.apache.juddi.model;
2   /*
3    * Copyright 2001-2008 The Apache Software Foundation.
4    * 
5    * Licensed under the Apache License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    * 
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  
18  import javax.persistence.EmbeddedId;
19  import javax.persistence.Entity;
20  import javax.persistence.Table;
21  
22  /**
23   * @author <a href="mailto:kstam@apache.org">Kurt Stam</a>
24   */
25  @Entity
26  @Table(name = "j3_temp_key")
27  public class TempKey implements java.io.Serializable {
28  
29  	private static final long serialVersionUID = -2763025628473227781L;
30  	
31  	private TempKeyPK pk;
32  	
33  	public TempKey(){
34  	}
35  
36  	@EmbeddedId
37  	public TempKeyPK getPk() {
38  		return pk;
39  	}
40  	
41  	public void setPk(TempKeyPK pk) {
42  		this.pk = pk;
43  	}
44  
45  	public void setPk(String txId, String entityKey) {
46  		TempKeyPK pk = new TempKeyPK();
47  		pk.setEntityKey(entityKey);
48  		pk.setTxId(txId);
49  		this.pk = pk;
50  	}
51  	
52  }