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

org.cloudfoundry.client.lib.domain.SecurityGroupRule Maven / Gradle / Ivy

The newest version!
package org.cloudfoundry.client.lib.domain;

import org.cloudfoundry.client.lib.domain.annotation.Nullable;
import org.immutables.value.Value;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;

@Value.Immutable
@JsonSerialize(as = ImmutableSecurityGroupRule.class)
@JsonDeserialize(as = ImmutableSecurityGroupRule.class)
public interface SecurityGroupRule {

    String getProtocol();

    String getPorts();

    String getDestination();

    @Nullable
    Boolean getLog();

    @Nullable
    Integer getType();

    @Nullable
    Integer getCode();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy