Remove 'All rights reserved.' on apache 2 license
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / consumer / RequestDetails.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *     Unless required by applicable law or agreed to in writing, software
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16 package org.onap.nbi.apis.serviceorder.model.consumer;
17
18 public class RequestDetails {
19
20     private ModelInfo modelInfo;
21
22     private SubscriberInfo subscriberInfo;
23
24     private RequestInfo requestInfo;
25
26     private RequestParameters requestParameters;
27
28     private CloudConfiguration cloudConfiguration;
29
30
31     public CloudConfiguration getCloudConfiguration() {
32         return cloudConfiguration;
33     }
34
35     public void setCloudConfiguration(CloudConfiguration cloudConfiguration) {
36         this.cloudConfiguration = cloudConfiguration;
37     }
38
39     public ModelInfo getModelInfo() {
40         return modelInfo;
41     }
42
43     public void setModelInfo(ModelInfo modelInfo) {
44         this.modelInfo = modelInfo;
45     }
46
47     public SubscriberInfo getSubscriberInfo() {
48         return subscriberInfo;
49     }
50
51     public void setSubscriberInfo(SubscriberInfo subscriberInfo) {
52         this.subscriberInfo = subscriberInfo;
53     }
54
55     public RequestInfo getRequestInfo() {
56         return requestInfo;
57     }
58
59     public void setRequestInfo(RequestInfo requestInfo) {
60         this.requestInfo = requestInfo;
61     }
62
63     public RequestParameters getRequestParameters() {
64         return requestParameters;
65     }
66
67     public void setRequestParameters(RequestParameters requestParameters) {
68         this.requestParameters = requestParameters;
69     }
70
71     @Override
72     public String toString() {
73         return "RequestDetails{" + "modelInfo=" + modelInfo + ", subscriberInfo=" + subscriberInfo + ", requestInfo="
74                 + requestInfo + ", requestParameters=" + requestParameters + ", cloudConfiguration="
75                 + cloudConfiguration + '}';
76     }
77 }