/*- * ============LICENSE_START======================================================= * ONAP - SO * ================================================================================ * Copyright (C) 2017 - 2018 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.onap.so.client.sniro.beans; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonRootName; @JsonRootName("requestInfo") public class RequestInfo implements Serializable{ private static final long serialVersionUID = -759180997599143791L; @JsonProperty("transactionId") String transactionId; @JsonProperty("requestId") String requestId; @JsonProperty("callbackUrl") String callbackUrl; @JsonProperty("sourceId") String sourceId = "mso"; @JsonProperty("requestType") String requestType; @JsonProperty("timeout") long timeout; public String getTransactionId(){ return transactionId; } public void setTransactionId(String transactionId){ this.transactionId = transactionId; } public String getRequestId(){ return requestId; } public void setRequestId(String requestId){ this.requestId = requestId; } public String getCallbackUrl(){ return callbackUrl; } public void setCallbackUrl(String callbackUrl){ this.callbackUrl = callbackUrl; } public String getSourceId(){ return sourceId; } public void setSourceId(String sourceId){ this.sourceId = sourceId; } public String getRequestType(){ return requestType; } public void setRequestType(String requestType){ this.requestType = requestType; } public long getTimeout(){ return timeout; } public void setTimeout(long timeout){ this.timeout = timeout; } }