Skip to content

Commit

Permalink
Merge pull request Azure#65 from loudej/docs
Browse files Browse the repository at this point in the history
Creating docs pull request OBO Walter
  • Loading branch information
loudej committed Nov 16, 2011
2 parents b4bc4a9 + 716a546 commit 5c6a797
Show file tree
Hide file tree
Showing 7 changed files with 485 additions and 175 deletions.
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;
}

}
Original file line number Diff line number Diff line change
@@ -1,17 +1,35 @@
package com.microsoft.windowsazure.services.serviceBus.models;

/**
* Represents the result of a <code>createRule</code> operation.
*/
public class CreateRuleResult {

private Rule value;

/**
* Creates an instance of the <code>CreateRuleResult</code> class.
*
* @param value
* A {@link Rule} object assigned as the value of the result.
*/
public CreateRuleResult(Rule value) {
this.setValue(value);
}

/**
* Specfies the value of the result.
*
* @return A {@link Rule} object assigned as the value of the result.
*/
public void setValue(Rule value) {
this.value = value;
}


/**
* Returns the value of the result.
*
* @return A {@link Rule} object that represents the value of the result.
*/
public Rule getValue() {
return value;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
package com.microsoft.windowsazure.services.serviceBus.models;


/**
* Represents the result of a <code>createSubscription</code> operation.
*/
public class CreateSubscriptionResult {

private Subscription value;

/**
* Creates an instance of the <code>CreateSubscriptionResult</code> class.
*
* @param value
* A {@link Subscription} object assigned as the value of the result.
*/
public CreateSubscriptionResult(Subscription value) {
this.setValue(value);
}

/**
* Specfies the value of the result.
*
* @return A {@link Subscription} object assigned as the value of the result.
*/
public void setValue(Subscription value) {
this.value = value;
}

/**
* Returns the value of the result.
*
* @return A {@link Subscription} object that represents the value of the result.
*/
public Subscription getValue() {
return value;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
package com.microsoft.windowsazure.services.serviceBus.models;


/**
* Represents the result of a <code>createTopic</code> operation.
*/
public class CreateTopicResult {

private Topic value;

/**
* Creates an instance of the <code>CreateTopicResult</code> class.
*
* @param value
* A {@link Topic} object assigned as the value of the result.
*/
public CreateTopicResult(Topic value) {
this.setValue(value);
}

/**
* Specfies the value of the result.
*
* @return A {@link Topic} object assigned as the value of the result.
*/
public void setValue(Topic value) {
this.value = value;
}

/**
* Returns the value of the result.
*
* @return A {@link Topic} object that represents the value of the result.
*/
public Topic getValue() {
return value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public Message() {
}

/**
* Creates an instance of the <code>Message</code> class using the specified <code>InputStream</code>.
* Creates an instance of the <code>Message</code> class using the
* specified <code>InputStream</code>.
*
* @param body
* An <code>InputStream</code> object that represents the body of
Expand Down Expand Up @@ -149,8 +150,8 @@ public Date getDate() {
* Sets the date/time of the message.
*
* @param date
* A <code>Date</code> object that represents the date/time of the
* object.
* A <code>Date</code> object that represents the date/time of
* the object.
*
* @return A <code>Message</code> object that reperesents the updated
* message.
Expand Down Expand Up @@ -403,8 +404,8 @@ public String getReplyToSessionId() {
* Sets the session ID of the Reply To recipient.
*
* @param replyToSessionId
* A <code>String</code> object that represents the session ID of
* the Reply To recipient.
* A <code>String</code> object that represents the session ID
* of the Reply To recipient.
*
* @return A <code>Message</code> object that reperesents the updated
* message.
Expand Down
Loading

0 comments on commit 5c6a797

Please sign in to comment.