com.openshift.internal.restclient.model.volume.SecretVolumeSource 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.volume;
import static com.openshift.internal.util.JBossDmrExtentions.asString;
import static com.openshift.internal.util.JBossDmrExtentions.set;
import org.jboss.dmr.ModelNode;
import com.openshift.restclient.model.volume.ISecretVolumeSource;
import com.openshift.restclient.model.volume.VolumeType;
/**
* @author Ulf Lilleengen
*/
public class SecretVolumeSource
extends VolumeSource
implements ISecretVolumeSource {
private static final String PROP_SECRET_NAME = "secretName";
private final ModelNode node;
public SecretVolumeSource(ModelNode node) {
super(node);
this.node = node.get(VolumeType.SECRET);
}
public SecretVolumeSource(String name) {
this(new ModelNode());
setName(name);
}
@Override
public String getSecretName() {
return asString(node, getPropertyKeys(), PROP_SECRET_NAME);
}
@Override
public void setSecretName(String secretName) {
set(node, getPropertyKeys(), PROP_SECRET_NAME, secretName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy