All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.kubernetes.api.model.EditableServicePort Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model;

import java.io.Serializable;
import io.fabric8.kubernetes.api.builder.Editable;

public class EditableServicePort extends ServicePort implements Editable{


public EditableServicePort(){
    super();
}
public EditableServicePort( String name , Integer nodePort , Integer port , String protocol , IntOrString targetPort ){
    super(name, nodePort, port, protocol, targetPort);
}

public ServicePortBuilder edit(){
    return new ServicePortBuilder(this);
}


}
    




© 2015 - 2025 Weber Informatics LLC | Privacy Policy