aboutsummaryrefslogtreecommitdiffstats
path: root/mso-api-handlers/mso-requests-db/src/test
AgeCommit message (Expand)AuthorFilesLines
2018-09-10sparate beans and repositoriesBenjamin, Max (mb388a)9-823/+0
2018-09-08added generic fabric support to SOBenjamin, Max (mb388a)5-4/+72
2018-09-08Adding rest service for so monitoringwaqas.ikram1-0/+184
2018-08-24request db access converted to restBenjamin, Max (mb388a)1-0/+4
2018-07-31Containerization feature of SOBenjamin, Max (mb388a)24-2141/+711
2018-04-19getOperationStatusByServiceId db result is listYulian Han1-2/+3
2018-03-28improved request-db test coverageBenjamin, Max (mb388a)5-194/+369
2018-03-28Junit for mso.requestsdbSP005016389-259/+614
2018-03-14AT&T 1712 and 1802 release codeRob Daugherty12-0/+1345
2018-03-09Revert Reduce log noise/warningsRob Daugherty1-94/+47
2018-03-08Reduce log noise/warnings format to conventionsMarcus G K Williams1-47/+94
2018-02-09Imporve test coverage for RequestDatabasesubhash kumar singh1-0/+283
2017-09-081710 Rebase - Second AttemptArthur Martella10-2710/+0
2017-04-11[MSO-8] Update the maven dependencyxg353y2-131/+0
2017-01-31Initial OpenECOMP MSO commitChrisC12-0/+2841
or: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * 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.sdcrests.common;

public class RestConstants {
  public static final String USER_ID_HEADER_PARAM = "USER_ID";
  // value Should be equal to com.tlv.sdc.common.api.Constants#USER_ID_HEADER
  public static final String USER_MISSING_ERROR_MSG =
      "Field does not conform to predefined criteria : user : may not be null";
  public static final String INVALID_JSON_ERROR_MESSAGE =
      "Field does not conform to predefined criteria : body :must be in JSON format";
}