-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct ordering of properties, WSDL ordering is important
Signed-off-by: Stefan Dilk <[email protected]>
- Loading branch information
Showing
49 changed files
with
252 additions
and
274 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 13 additions & 4 deletions
17
src/main/java/com/vmware/vim25/DvsHostInfrastructureTrafficResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
package com.vmware.vim25; | ||
|
||
/** | ||
* Created by Stefan Dilk {@literal <[email protected]>} on 31.03.2018 | ||
* This class defines the resource allocation for a host infrastructure traffic class on a physical NIC | ||
* | ||
* @author Stefan Dilk <[email protected]> | ||
* @since 6.0 | ||
*/ | ||
public class DvsHostInfrastructureTrafficResource extends DynamicData { | ||
|
||
public DvsHostInfrastructureTrafficResourceAllocation allocationInfo; | ||
public String description; | ||
public String key; | ||
private String key; | ||
private String description; | ||
private DvsHostInfrastructureTrafficResourceAllocation allocationInfo; | ||
|
||
@Override | ||
public String toString() { | ||
return "DvsHostInfrastructureTrafficResource{" + | ||
"key='" + key + '\'' + | ||
", description='" + description + '\'' + | ||
", allocationInfo=" + allocationInfo + | ||
"} " + super.toString(); | ||
} | ||
|
||
public DvsHostInfrastructureTrafficResourceAllocation getAllocationInfo() { | ||
return allocationInfo; | ||
|
17 changes: 13 additions & 4 deletions
17
src/main/java/com/vmware/vim25/DvsHostInfrastructureTrafficResourceAllocation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
package com.vmware.vim25; | ||
|
||
/** | ||
* Created by Stefan Dilk {@literal <[email protected]>} on 31.03.2018 | ||
* Resource allocation information for a host infrastructure traffic class. | ||
* | ||
* @author Stefan Dilk <[email protected]> | ||
* @since 6.0 | ||
*/ | ||
public class DvsHostInfrastructureTrafficResourceAllocation extends DynamicData { | ||
|
||
public Long limit; | ||
public Long reservation; | ||
public SharesInfo shares; | ||
private Long limit; | ||
private SharesInfo shares; | ||
private Long reservation; | ||
|
||
@Override | ||
public String toString() { | ||
return "DvsHostInfrastructureTrafficResourceAllocation{" + | ||
"limit=" + limit + | ||
", shares=" + shares + | ||
", reservation=" + reservation + | ||
"} " + super.toString(); | ||
} | ||
|
||
public long getLimit() { | ||
return limit; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.