e8a258c13e1fde72b70fa750e9df3fc2f43c0e9a
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / consumer / RequestDetails.java
1 /**
2  *
3  *     Copyright (c) 2017 Orange.  All rights reserved.
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 package org.onap.nbi.apis.serviceorder.model.consumer;
18
19 public class RequestDetails {
20
21     private ModelInfo modelInfo;
22
23     private SubscriberInfo subscriberInfo;
24
25     private RequestInfo requestInfo;
26
27     private RequestParameters requestParameters;
28
29     private CloudConfiguration cloudConfiguration;
30
31
32     public CloudConfiguration getCloudConfiguration() {
33         return cloudConfiguration;
34     }
35
36     public void setCloudConfiguration(CloudConfiguration cloudConfiguration) {
37         this.cloudConfiguration = cloudConfiguration;
38     }
39
40     public ModelInfo getModelInfo() {
41         return modelInfo;
42     }
43
44     public void setModelInfo(ModelInfo modelInfo) {
45         this.modelInfo = modelInfo;
46     }
47
48     public SubscriberInfo getSubscriberInfo() {
49         return subscriberInfo;
50     }
51
52     public void setSubscriberInfo(SubscriberInfo subscriberInfo) {
53         this.subscriberInfo = subscriberInfo;
54     }
55
56     public RequestInfo getRequestInfo() {
57         return requestInfo;
58     }
59
60     public void setRequestInfo(RequestInfo requestInfo) {
61         this.requestInfo = requestInfo;
62     }
63
64     public RequestParameters getRequestParameters() {
65         return requestParameters;
66     }
67
68     public void setRequestParameters(RequestParameters requestParameters) {
69         this.requestParameters = requestParameters;
70     }
71
72     @Override
73     public String toString() {
74         return "RequestDetails{" + "modelInfo=" + modelInfo + ", subscriberInfo=" + subscriberInfo + ", requestInfo="
75                 + requestInfo + ", requestParameters=" + requestParameters + ", cloudConfiguration="
76                 + cloudConfiguration + '}';
77     }
78 }