forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Azure#65 from loudej/docs
Creating docs pull request OBO Walter
- Loading branch information
Showing
7 changed files
with
485 additions
and
175 deletions.
There are no files selected for viewing
40 changes: 29 additions & 11 deletions
40
...rc/main/java/com/microsoft/windowsazure/services/serviceBus/models/CreateQueueResult.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,20 +1,38 @@ | ||
package com.microsoft.windowsazure.services.serviceBus.models; | ||
|
||
|
||
/** | ||
* Represents the result of a <code>createQueue</code> operation. | ||
*/ | ||
public class CreateQueueResult { | ||
|
||
private Queue value; | ||
private Queue value; | ||
|
||
public CreateQueueResult(Queue value) { | ||
this.setValue(value); | ||
} | ||
/** | ||
* Creates an instance of the <code>CreateQueueResult</code> class. | ||
* | ||
* @param value | ||
* A {@link Queue} object assigned as the value of the result. | ||
*/ | ||
public CreateQueueResult(Queue value) { | ||
this.setValue(value); | ||
} | ||
|
||
public void setValue(Queue value) { | ||
this.value = value; | ||
} | ||
/** | ||
* Specfies the value of the result. | ||
* | ||
* @return A {@link Queue} object assigned as the value of the result. | ||
*/ | ||
public void setValue(Queue value) { | ||
this.value = value; | ||
} | ||
|
||
public Queue getValue() { | ||
return value; | ||
} | ||
/** | ||
* Returns the value of the result. | ||
* | ||
* @return A {@link Queue} object that represents the value of the result. | ||
*/ | ||
public Queue getValue() { | ||
return value; | ||
} | ||
|
||
} |
22 changes: 20 additions & 2 deletions
22
...src/main/java/com/microsoft/windowsazure/services/serviceBus/models/CreateRuleResult.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
20 changes: 19 additions & 1 deletion
20
.../java/com/microsoft/windowsazure/services/serviceBus/models/CreateSubscriptionResult.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
20 changes: 19 additions & 1 deletion
20
...rc/main/java/com/microsoft/windowsazure/services/serviceBus/models/CreateTopicResult.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
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.