aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/scheduler/rest/RequestDetails.java
blob: 746fd9b2493558e582e5967665c4b61bbc53bc4b (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*-
 * ============LICENSE_START=======================================================
 * VID
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.vid.scheduler.rest;

import java.util.HashMap;
import java.util.Map;
import java.util.List;
//import javax.annotation.Generated;

import org.openecomp.vid.domain.mso.CloudConfiguration;
import org.openecomp.vid.domain.mso.ModelInfo;
import org.openecomp.vid.domain.mso.RequestInfo;
import org.openecomp.vid.domain.mso.RequestParameters;
import org.openecomp.vid.domain.mso.SubscriberInfo;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;

/*
 * "domain" : "ChangeManagement",
	"scheduleId" : "3569b875-d40e-4adb-a288-a74f4b59ec1c",
	"scheduleName" : "VnfUpgrade/DWF",
	"userId" : "jf9860@att.com",
	"domainData" : {
		"WorkflowName" : "HEAT Stack Software Update for vNFs"
	},
	"status" : "PendingOptimization",
	"schedulingInfo" : {
		"scheduleId" : "ChangeManagement.3569b875-d40e-4adb-a288-a74f4b59ec1c",
		"normalDurationInSecs" : 60,
		"AdditionalDurationInSecs" : 0,
		"concurrencyLimit" : 10,
		"policyId" : ["SNIRO.TimeLimitAndVerticalTopology"],
		"groups" : [{
				"groupId" : " group1",
				"node" : ["satmo415vbc", "satmo455vbc"],
				"changeWindows" : [{
						"startTime" : "2017-02-15T01:00:00Z",
						"finishTime" : "2017-02-15T02:00:00Z"
					}
				]
			}, {
				"groupId" : " group2",
				"node" : ["satmo555vbc"],
				"changeWindows" : [{
						"startTime" : "2017-02-15T01:00:00Z",
						"finishTime" : "2017-02-15T02:00:00Z"
					}, {
						"startTime" : "2017-02-15T05:00:00Z",
						"finishTime" : "2017-02-15T05:30:00Z"
					}
				]
			}
		]
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "domain",
    "scheduleId",
    "scheduleName",
    "userId",
    "domainData",
    "status",
    "schcedulingInfo"
})
public class RequestDetails {
	
	@JsonProperty("domain")
    private String domain;
	 
	 
    
	@JsonProperty("domain")
    public String getDomain() {
        return domain;
    }

    @JsonProperty("domain")
    public void setDomain(String domain) {
        this.domain = domain;
    }
}