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

annotations.io.fabric8.docker.api.model.EditablePort Maven / Gradle / Ivy

There is a newer version: 1.0.15
Show newest version
package io.fabric8.docker.api.model;

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

public class EditablePort extends Port implements Editable{


public EditablePort(){
    super();
}
public EditablePort( String IP , Integer PrivatePort , Integer PublicPort , String Type ){
    super(IP, PrivatePort, PublicPort, Type);
}

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


}
    




© 2015 - 2025 Weber Informatics LLC | Privacy Policy