Uses of Class
org.dasein.cloud.services.firewall.Protocol

Packages that use Protocol
org.dasein.cloud.services.address   
org.dasein.cloud.services.firewall The firewall services define how to manage and control your firewall rules. 
 

Uses of Protocol in org.dasein.cloud.services.address
 

Methods in org.dasein.cloud.services.address that return Protocol
 Protocol IpForwardingRule.getProtocol()
           
 

Methods in org.dasein.cloud.services.address with parameters of type Protocol
 String AddressServices.forward(String addressId, int publicPort, Protocol protocol, int privatePort, String onServerId)
           
 void IpForwardingRule.setProtocol(Protocol protocol)
           
 

Uses of Protocol in org.dasein.cloud.services.firewall
 

Methods in org.dasein.cloud.services.firewall that return Protocol
 Protocol FirewallRule.getProtocol()
           
static Protocol Protocol.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Protocol[] Protocol.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.dasein.cloud.services.firewall with parameters of type Protocol
 void FirewallServices.authorize(String firewallId, String cidr, Protocol protocol, int beginPort, int endPort)
          Provides positive authorization for the specified firewall rule.
static String FirewallRule.getRuleId(String providerFirewallId, String cidr, Direction direction, Protocol protocol, int startPort, int endPort)
           
 void FirewallServices.revoke(String firewallId, String cidr, Protocol protocol, int beginPort, int endPort)
          Revokes the specified access from the named firewall.
 void FirewallRule.setProtocol(Protocol protocol)
          Used only for marshalling and not to be used programatically.
 

Constructors in org.dasein.cloud.services.firewall with parameters of type Protocol
FirewallRule(String firewallId, String cidr, Protocol protocol, int startPort, int endPort)
          Constructs a firewall rule with the specified rule state.