com.openshift.internal.restclient.model.kubeclient.Context Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2016 Red Hat, Inc.
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
******************************************************************************/
package com.openshift.internal.restclient.model.kubeclient;
import java.util.HashMap;
import java.util.Map;
import com.openshift.internal.restclient.model.properties.ResourcePropertyKeys;
import com.openshift.restclient.model.kubeclient.IContext;
/**
* KubeConfig context
*
*/
public class Context implements IContext, ResourcePropertyKeys {
private static final String USER = "user";
private static final String CLUSTER = "cluster";
private Map context = new HashMap<>();
private String name;
public void setContext(Map context) {
this.context.clear();
this.context.putAll(context);
}
@Override
public String getCluster() {
return context.get(CLUSTER);
}
@Override
public String getUser() {
return context.get(USER);
}
@Override
public String getNamespace() {
return context.get(NAMESPACE);
}
@Override
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy