2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.openecomp.appc.domainmodel.lcm;
 
  24 import java.util.Date;
 
  27 public class CommonHeader {
 
  30     private Date timestamp;
 
  31     private String apiVer;
 
  32     private String originatorId;
 
  33     private String requestId;
 
  34     private String subRequestId;
 
  36     public Flags getFlags() {
 
  40     public void setFlags(Flags flags) {
 
  44     public Date getTimeStamp() {
 
  48     public void setTimestamp(Date timestamp) {
 
  49         this.timestamp = timestamp;
 
  52     public String getApiVer() {
 
  56     public void setApiVer(String apiVer) {
 
  60     public String getOriginatorId() {
 
  64     public void setOriginatorId(String originatorId) {
 
  65         this.originatorId = originatorId;
 
  68     public String getRequestId() {
 
  72     public void setRequestId(String requestId) {
 
  73         this.requestId = requestId;
 
  76     public String getSubRequestId() {
 
  80     public void setSubRequestId(String subRequestId) {
 
  81         this.subRequestId = subRequestId;
 
  85     public String toString() {
 
  86         return "CommonHeader{" +
 
  88                 ", timestamp=" + timestamp +
 
  89                 ", apiVer='" + apiVer + '\'' +
 
  90                 ", originatorId='" + originatorId + '\'' +
 
  91                 ", requestId='" + requestId + '\'' +
 
  92                 ", subRequestId='" + subRequestId + '\'' +