summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-widget-ms/widget-ms/src/main/java/org/onap/portalapp/widget/domain/MicroserviceParameter.java
blob: 7207d0aecac00ef7de45c94357eff854bdd4c851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package org.onap.portalapp.widget.domain;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.Digits;
import javax.validation.constraints.Size;
import lombok.Getter;
import lombok.Setter;
import org.hibernate.validator.constraints.SafeHtml;

/**
 * TODO: moved all microservice-related code (domain, controller, service)
 * from onap portal Backend to widget microservice
 */
@Entity
@Table(name="EP_MICROSERVICE_PARAMETER")
@Getter
@Setter
public class MicroserviceParameter {
	
	@Id
	@Column(name = "id")
	@GeneratedValue(strategy=GenerationType.AUTO)
	@Digits(integer = 11, fraction = 0)
	private Long id;

	@Column(name = "service_id")
	@Digits(integer = 11, fraction = 0)
	private long serviceId;

	@Column(name = "para_key")
	@Size(max = 50)
	@SafeHtml
	private String para_key;

	@Column(name = "para_value")
	@Size(max = 50)
	@SafeHtml
	private String para_value;

	@Override
	public String toString() {
		return "MicroserviceParameter [serviceId=" + serviceId + ", para_key=" + para_key + ", para_value=" + para_value
				+ "]";
	}
	
}