Update project structure to org.onap.aaf
[aaf/inno.git] / env / src / main / java / org / onap / aaf / inno / env / Trans.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.inno.env;\r
24 \r
25 \r
26 \r
27 \r
28 /**\r
29  * A Trans is like an Env, however, it's purpose it to track the Transient \r
30  * Data associated with Transactions, or other short term elements.\r
31  * \r
32  * Any Object implementing Trans should expect to go in an out of scope quickly\r
33  * \r
34  * Implementations should also overload the concepts of "Start", etc and build up\r
35  * and Audit Log, so it can implement "metric" below\r
36  * \r
37  * All Transactions (i.e. a call to a service) will need these items.\r
38  * \r
39  *\r
40  */\r
41 public interface Trans extends Env {\r
42         /**\r
43          * Add a completed entry in the Audit Trail for tracking purposes.\r
44          * \r
45          * @param text\r
46          */\r
47         public void checkpoint(String text);\r
48 \r
49         /**\r
50          * Add a completed entry in the Audit Trail for tracking purposes, and combine flag with "CHECKPOINT" \r
51          * \r
52          * @param text\r
53          */\r
54         public void checkpoint(String text, int additionalFlag);\r
55 \r
56         /**\r
57          * Output an Audit Trail onto the StringBuilder\r
58          *\r
59          * Load metrics into an array of floats from passed in Flags\r
60          * \r
61          * @param flag\r
62          * @param sb\r
63          * @return       \r
64          */\r
65         public Metric auditTrail(LogTarget lt, int indent, StringBuilder sb, int ... flag);\r
66 \r
67         public Metric auditTrail(int indent, StringBuilder sb, int ... flag);\r
68 \r
69         public class Metric {\r
70                 public float[] buckets;\r
71                 public float   total;\r
72                 public int     entries;\r
73         }\r
74 }\r