This project has retired. For details please refer to its Attic page.
InstanceDetailsDescr 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.Column;
19  import javax.persistence.Entity;
20  import javax.persistence.FetchType;
21  import javax.persistence.GeneratedValue;
22  import javax.persistence.GenerationType;
23  import javax.persistence.Id;
24  import javax.persistence.JoinColumn;
25  import javax.persistence.ManyToOne;
26  import javax.persistence.Table;
27  
28  /**
29   * @author <a href="mailto:kurt@apache.org">Kurt T Stam</a>
30   * @author <a href="mailto:jfaath@apache.org">Jeff Faath</a>
31   */
32  @Entity
33  @Table(name = "j3_instance_details_descr")
34  public class InstanceDetailsDescr implements java.io.Serializable {
35  
36  	private static final long serialVersionUID = -2341717191948942661L;
37  	private Long id;
38  	private TmodelInstanceInfo tmodelInstanceInfo;
39  	private String langCode;
40  	private String descr;
41  
42  	public InstanceDetailsDescr() {
43  	}
44  
45  	public InstanceDetailsDescr(TmodelInstanceInfo tmodelInstanceInfo, String descr) {
46  		this.tmodelInstanceInfo = tmodelInstanceInfo;
47  		this.descr = descr;
48  	}
49  
50  	public InstanceDetailsDescr(TmodelInstanceInfo tmodelInstanceInfo, String langCode, String descr) {
51  		this.tmodelInstanceInfo = tmodelInstanceInfo;
52  		this.langCode = langCode;
53  		this.descr = descr;
54  	}
55  
56  	@Id
57  	@GeneratedValue(strategy=GenerationType.AUTO)
58  	public Long getId() {
59  		return this.id;
60  	}
61  	public void setId(Long id) {
62  		this.id = id;
63  	}
64  
65  	@ManyToOne(fetch = FetchType.LAZY)
66  	@JoinColumn(name = "tmodel_instance_info_id", nullable = false)
67  	public TmodelInstanceInfo getTmodelInstanceInfo() {
68  		return this.tmodelInstanceInfo;
69  	}
70  	public void setTmodelInstanceInfo(TmodelInstanceInfo tmodelInstanceInfo) {
71  		this.tmodelInstanceInfo = tmodelInstanceInfo;
72  	}
73  
74  	@Column(name = "lang_code", length = 26)
75  	public String getLangCode() {
76  		return this.langCode;
77  	}
78  	public void setLangCode(String langCode) {
79  		this.langCode = langCode;
80  	}
81  
82  	@Column(name = "descr", nullable = false, length = 255)
83  	public String getDescr() {
84  		return this.descr;
85  	}
86  	public void setDescr(String descr) {
87  		this.descr = descr;
88  	}
89  
90  }