added svcapi ui and camunda code
[it/otf.git] / otf-service-api / src / main / java / org / oran / otf / common / model / local / DeployTestStrategyRequest.java
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 package org.oran.otf.common.model.local;\r
18 \r
19 import org.bson.types.ObjectId;\r
20 \r
21 public class DeployTestStrategyRequest {\r
22   private ObjectId testDefinitionDeployerId;\r
23   private ObjectId testDefinitionId;\r
24   private String definitionId;\r
25 \r
26   public DeployTestStrategyRequest() {}\r
27 \r
28   public DeployTestStrategyRequest(\r
29       ObjectId testDefinitionDeployerId, ObjectId testDefinitionId, String definitionId) {\r
30     this.testDefinitionDeployerId = testDefinitionDeployerId;\r
31     this.testDefinitionId = testDefinitionId;\r
32     this.definitionId = definitionId;\r
33   }\r
34 \r
35   public ObjectId getTestDefinitionDeployerId() {\r
36     return testDefinitionDeployerId;\r
37   }\r
38 \r
39   public void setTestDefinitionDeployerId(ObjectId testDefinitionDeployerId) {\r
40     this.testDefinitionDeployerId = testDefinitionDeployerId;\r
41   }\r
42 \r
43   public ObjectId getTestDefinitionId() {\r
44     return testDefinitionId;\r
45   }\r
46 \r
47   public void setTestDefinitionId(ObjectId testDefinitionId) {\r
48     this.testDefinitionId = testDefinitionId;\r
49   }\r
50 \r
51   public String getDefinitionId() {\r
52     return definitionId;\r
53   }\r
54 \r
55   public void setDefinitionId(String definitionId) {\r
56     this.definitionId = definitionId;\r
57   }\r
58 \r
59   @Override\r
60   public String toString() {\r
61     return "{\"DeployTestStrategyRequest\":{"\r
62         + "\"testDefinitionDeployerId\":\""\r
63         + testDefinitionDeployerId\r
64         + "\""\r
65         + ", \"testDefinitionId\":\""\r
66         + testDefinitionId\r
67         + "\""\r
68         + ", \"definitionId\":\""\r
69         + definitionId\r
70         + "\""\r
71         + "}}";\r
72   }\r
73 }\r