2 * ================================================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ================================================================================
20 package org.openecomp.portalsdk.workflow.domain;
21 import java.util.Date;
23 import org.openecomp.portalsdk.core.domain.support.DomainVo;
24 public class WorkflowSchedule extends DomainVo{
28 private static final long serialVersionUID = 1L;
30 private String serverUrl;
31 private String workflowKey;
32 private String arguments;
33 private String cronDetails;
34 private Date endDateTime;
35 private Date startDateTime;
36 private String recurrence;
41 public void setId(Long id) {
44 public String getServerUrl() {
47 public void setServerUrl(String serverUrl) {
48 this.serverUrl = serverUrl;
50 public String getWorkflowKey() {
53 public void setWorkflowKey(String workflowKey) {
54 this.workflowKey = workflowKey;
56 public String getArguments() {
59 public void setArguments(String arguments) {
60 this.arguments = arguments;
62 public String getCronDetails() {
65 public void setCronDetails(String cronDetails) {
66 this.cronDetails = cronDetails;
68 public Date getEndDateTime() {
71 public void setEndDateTime(Date endDateTime) {
72 this.endDateTime = endDateTime;
74 public Date getStartDateTime() {
77 public void setStartDateTime(Date startDateTime) {
78 this.startDateTime = startDateTime;
80 public String getRecurrence() {
83 public void setRecurrence(String recurrence) {
84 this.recurrence = recurrence;
86 public static long getSerialversionuid() {
87 return serialVersionUID;