001/**
002 * Copyright (C) 2006-2022 Talend Inc. - www.talend.com
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.talend.sdk.component.api.context;
017
018import java.io.Serializable;
019import java.util.Map;
020
021import lombok.AllArgsConstructor;
022import lombok.Getter;
023
024@AllArgsConstructor
025@Getter
026public class RuntimeContextHolder implements Serializable {
027
028    private final String connectorId;
029
030    private final Map<String, Object> map;
031
032    public Object getGlobal(final String key) {
033        return map.get(key);
034    }
035
036    public void setGlobal(final String key, final Object value) {
037        map.put(key, value);
038    }
039
040    public Object get(final String key) {
041        return map.get(connectorId + "_" + key);
042    }
043
044    public void set(final String key, final Object value) {
045        map.put(connectorId + "_" + key, value);
046    }
047
048}