Class ConsolePluginService
- java.lang.Object
-
- io.fabric8.openshift.api.model.console.v1.ConsolePluginService
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ConsolePluginServiceBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ConsolePluginService extends Object implements io.fabric8.kubernetes.api.builder.Editable<ConsolePluginServiceBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ConsolePluginService holds information on Service that is serving console dynamic plugin assets.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConsolePluginService()No args constructor for use in serializationConsolePluginService(String basePath, String name, String namespace, Integer port)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConsolePluginServiceBuilderedit()Map<String,Object>getAdditionalProperties()StringgetBasePath()basePath is the path to the plugin's assets.StringgetName()name of Service that is serving the plugin assets.StringgetNamespace()namespace of Service that is serving the plugin assets.IntegergetPort()port on which the Service that is serving the plugin is listening to.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetBasePath(String basePath)basePath is the path to the plugin's assets.voidsetName(String name)name of Service that is serving the plugin assets.voidsetNamespace(String namespace)namespace of Service that is serving the plugin assets.voidsetPort(Integer port)port on which the Service that is serving the plugin is listening to.ConsolePluginServiceBuildertoBuilder()
-
-
-
Method Detail
-
getBasePath
public String getBasePath()
basePath is the path to the plugin's assets. The primary asset it the manifest file called `plugin-manifest.json`, which is a JSON document that contains metadata about the plugin and the extensions.
-
setBasePath
public void setBasePath(String basePath)
basePath is the path to the plugin's assets. The primary asset it the manifest file called `plugin-manifest.json`, which is a JSON document that contains metadata about the plugin and the extensions.
-
getName
public String getName()
name of Service that is serving the plugin assets.
-
setName
public void setName(String name)
name of Service that is serving the plugin assets.
-
getNamespace
public String getNamespace()
namespace of Service that is serving the plugin assets.
-
setNamespace
public void setNamespace(String namespace)
namespace of Service that is serving the plugin assets.
-
getPort
public Integer getPort()
port on which the Service that is serving the plugin is listening to.
-
setPort
public void setPort(Integer port)
port on which the Service that is serving the plugin is listening to.
-
edit
public ConsolePluginServiceBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ConsolePluginServiceBuilder>
-
toBuilder
public ConsolePluginServiceBuilder toBuilder()
-
-