Package com.woorea.openstack.nova.model

Examples of com.woorea.openstack.nova.model.SecurityGroupRuleForCreate


   * @deprecated Use {@link #createSecurityGroupRule(String, String, Integer, Integer, String)}
   */
  public CreateRule createSecurityGroupRule(
      Integer parentSecurityGroupId, String ipProtocol, Integer fromPort,
      Integer toPort, String cidr) {
    SecurityGroupRuleForCreate securityGroupRuleForCreate = new SecurityGroupRuleForCreate(
        parentSecurityGroupId, ipProtocol, fromPort, toPort, cidr);
    return new CreateRule(securityGroupRuleForCreate);
  }
View Full Code Here


   * @deprecated Use {@link #createSecurityGroupRule(String, String, String, Integer, Integer)}
   */
  public CreateRule createSecurityGroupRule(
      Integer parentSecurityGroupId, String ipProtocol, Integer fromPort,
      Integer toPort, Integer sourceGroupId) {
    SecurityGroupRuleForCreate securityGroupRuleForCreate = new SecurityGroupRuleForCreate(
        parentSecurityGroupId, ipProtocol, fromPort, toPort,
        sourceGroupId);
    return new CreateRule(securityGroupRuleForCreate);
  }
View Full Code Here

  }
 
  public CreateRule createSecurityGroupRule(
      String parentSecurityGroupId, String ipProtocol, Integer fromPort,
      Integer toPort, String cidr) {
    SecurityGroupRuleForCreate securityGroupRuleForCreate = new SecurityGroupRuleForCreate(
        parentSecurityGroupId, ipProtocol, fromPort, toPort, cidr);
    return new CreateRule(securityGroupRuleForCreate);
  }
View Full Code Here

  }

  public CreateRule createSecurityGroupRule(
      String parentSecurityGroupId,String sourceGroupId,String ipProtocol, Integer fromPort,
      Integer toPort) {
    SecurityGroupRuleForCreate securityGroupRuleForCreate = new SecurityGroupRuleForCreate(
        parentSecurityGroupId, sourceGroupId,ipProtocol, fromPort, toPort
        );
    return new CreateRule(securityGroupRuleForCreate);
  }
View Full Code Here

TOP

Related Classes of com.woorea.openstack.nova.model.SecurityGroupRuleForCreate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.