summaryrefslogtreecommitdiffstats
path: root/env/src/main/java/org/onap/aaf/inno/env/Slot.java
blob: 0d7bb1557ad9d670e6f081ffbbd8f5d3e8625e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*******************************************************************************
 * ============LICENSE_START====================================================
 * * org.onap.aaf
 * * ===========================================================================
 * * Copyright © 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====================================================
 * *
 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * *
 ******************************************************************************/
/**
 * Slot.java
 *
 * Created on: Dec 5, 2008
 * Created by:
 *
 * (c) 2008 SBC Knowledge Ventures, L.P. All rights reserved.
 ******************************************************************* 
 * RESTRICTED - PROPRIETARY INFORMATION The Information contained 
 * herein is for use only by authorized employees of AT&T Services, 
 * Inc., and authorized Affiliates of AT&T Services, Inc., and is 
 * not for general distribution within or outside the respective 
 * companies. 
 *******************************************************************
 */
package org.onap.aaf.inno.env;

/**
 * Slot's are used to store and retrieve data in the transaction's State object.
 */
public final class Slot {
	
	/*
	 * The name of the Slot.
	 */
	private final String key;
	
	/*
	 * The index of the State's local map associated with this Slot.
	 */
	final int slot; 
	
	/**
	 * Constructs a new Slot.
	 * 
	 * @param index
	 * 			The index of State's local map this Slot is associated with.
	 * @param name
	 * 			The name of the Slot's key.
	 */
	Slot(int index, String name) {
		slot = index;
		key = name;
	}
	
	/**
	 * Debug method only to print key=slot pairs.
	 */
	public String toString() {
		return key + '=' + slot;
	}
	
	/**
	 * Returns the name of this Slot's key.
	 * 
	 * @return
	 * 			The name of this Slot's key.
	 */
	public String getKey() {
		return key;
	}
	
	/**
	 * Put an Object into the slot on the State
	 * @param state
	 * @param obj
	 */
	public void put(Object[] state, Object obj) {
		state[slot]=obj;
	}

	/**
	 * Get an Object from the slot on the State
	 * @param state
	 * @param obj
	 */
	public Object get(Object[] state) {
		return state[slot];
	}

}