ofs | hex dump | ascii |
---|
0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 01 e3 00 00 02 c3 08 06 00 00 00 26 33 68 | .PNG........IHDR.............&3h |
0020 | 93 00 00 00 01 73 52 47 42 00 ae ce 1c e9 00 00 00 04 67 41 4d 41 00 00 b1 8f 0b fc 61 05 00 00 | .....sRGB.........gAMA......a... |
0040 | 00 09 70 48 59 73 00 00 0e c4 00 00 0e c4 01 95 2b 0e 1b 00 00 eb 79 49 44 41 54 78 5e ec fd 0b | ..pHYs..........+.....yIDATx^... |
0060 | 7c 15 d5 bd f7 8f 7f 36 90 10 12 42 80 88 16 03 f5 96 a0 0d 51 6b 0f 78 49 6c b1 68 e3 49 a2 25 | |......6...B........Qk.xIl.h.I.% |
0080 | 56 89 e2 0d 5b f9 25 8f a8 87 3c 6d f1 f5 bc 6a 6a b1 20 3e 16 b1 49 79 4e cf 49 7a 7b 52 6d 85 | V...[.%...<m...jj..>..IyN.Iz{Rm. |
00a0 | 58 39 51 1e 12 45 b0 8a 26 68 b9 fc d5 6e 72 30 49 ab 02 56 e5 9e 7b 93 bd 93 f9 af b5 66 cd ce | X9Q..E..&h...nr0I..V..{......f.. |
00c0 | cc da 33 7b ef 09 3b 09 49 be 6f 5f cb 3d b3 e6 bb 2e b3 f6 b0 bf f3 5d 33 59 1f 8f c6 c0 20 f1 | ..3{..;.I.o_.=.........]3Y...... |
00e0 | 95 fb ff 03 97 cc 4e c6 7f ad 2a c0 2d ab aa 70 e0 d0 71 fc f7 6f 1e c0 87 0d ef e3 b5 b7 ff 8a | ......N...*.-..p..q..o.......... |
0100 | 87 0a ef 96 96 3a 9f 1e 6b c3 d2 75 2f 61 fb 53 d6 7c 82 20 08 82 18 cd 8c 93 9f 11 f1 f8 e3 8f | .....:..k..u/a.S.|.............. |
0120 | cb ad c8 e1 0e f8 a1 ff f3 8a f8 34 98 7e e2 45 c4 9e 6a c0 23 3f 5e 27 d2 ea ff fd 7f 70 e4 e8 | ...........4.~.E..j.#?^'.....p.. |
0140 | 09 79 94 20 08 82 20 c6 16 83 1e 19 5f 3c 2b 19 1f 1e 3e 2e 22 64 23 32 46 eb 5b d2 82 31 79 3e | .y.........._<+...>."d#2F.[..1y> |
0160 | fa fa 34 b4 b6 fb d0 e1 /*-
* ============LICENSE_START=======================================================
* ONAP : APPC
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Copyright (C) 2017 Amdocs
* =============================================================================
* 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.
*
* ECOMP is a trademark and service mark of AT&T Intellectual Property.
* ============LICENSE_END=========================================================
*/
package org.onap.appc.requesthandler.helper;
import org.onap.appc.domainmodel.lcm.RuntimeContext;
import org.onap.appc.exceptions.InvalidInputException;
public interface RequestValidator {
void validateRequest(RuntimeContext runtimeContext) throws Exception;
}
|