Examples of SecurityGroupRuleForCreate


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

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

   * @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

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

  }
 
  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

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

  }

  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
Copyright © 2018 www.massapi.com. 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.