Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,27 @@ public CallRecord post(final CallRecord newCallRecord) throws ClientException {
return send(HttpMethod.POST, newCallRecord);
}

/**
* Creates a CallRecord with a new object
*
* @param newCallRecord the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final CallRecord newCallRecord, final ICallback<CallRecord> callback) {
send(HttpMethod.PUT, callback, newCallRecord);
}

/**
* Creates a CallRecord with a new object
*
* @param newCallRecord the object to create/update
* @return the created CallRecord
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public CallRecord put(final CallRecord newCallRecord) throws ClientException {
return send(HttpMethod.PUT, newCallRecord);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,23 @@ public interface ICallRecordRequest extends IHttpRequest {
*/
CallRecord post(final CallRecord newCallRecord) throws ClientException;

/**
* Posts a CallRecord with a new object
*
* @param newCallRecord the object to create/update
* @param callback the callback to be called after success or failure
*/
void put(final CallRecord newCallRecord, final ICallback<CallRecord> callback);

/**
* Posts a CallRecord with a new object
*
* @param newCallRecord the object to create/update
* @return the created CallRecord
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
CallRecord put(final CallRecord newCallRecord) throws ClientException;

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,23 @@ public interface ISegmentRequest extends IHttpRequest {
*/
Segment post(final Segment newSegment) throws ClientException;

/**
* Posts a Segment with a new object
*
* @param newSegment the object to create/update
* @param callback the callback to be called after success or failure
*/
void put(final Segment newSegment, final ICallback<Segment> callback);

/**
* Posts a Segment with a new object
*
* @param newSegment the object to create/update
* @return the created Segment
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
Segment put(final Segment newSegment) throws ClientException;

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,23 @@ public interface ISessionRequest extends IHttpRequest {
*/
Session post(final Session newSession) throws ClientException;

/**
* Posts a Session with a new object
*
* @param newSession the object to create/update
* @param callback the callback to be called after success or failure
*/
void put(final Session newSession, final ICallback<Session> callback);

/**
* Posts a Session with a new object
*
* @param newSession the object to create/update
* @return the created Session
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
Session put(final Session newSession) throws ClientException;

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,27 @@ public Segment post(final Segment newSegment) throws ClientException {
return send(HttpMethod.POST, newSegment);
}

/**
* Creates a Segment with a new object
*
* @param newSegment the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final Segment newSegment, final ICallback<Segment> callback) {
send(HttpMethod.PUT, callback, newSegment);
}

/**
* Creates a Segment with a new object
*
* @param newSegment the object to create/update
* @return the created Segment
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public Segment put(final Segment newSegment) throws ClientException {
return send(HttpMethod.PUT, newSegment);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,27 @@ public Session post(final Session newSession) throws ClientException {
return send(HttpMethod.POST, newSession);
}

/**
* Creates a Session with a new object
*
* @param newSession the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final Session newSession, final ICallback<Session> callback) {
send(HttpMethod.PUT, callback, newSession);
}

/**
* Creates a Session with a new object
*
* @param newSession the object to create/update
* @return the created Session
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public Session put(final Session newSession) throws ClientException {
return send(HttpMethod.PUT, newSession);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,27 @@ public AadUserConversationMember post(final AadUserConversationMember newAadUser
return send(HttpMethod.POST, newAadUserConversationMember);
}

/**
* Creates a AadUserConversationMember with a new object
*
* @param newAadUserConversationMember the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final AadUserConversationMember newAadUserConversationMember, final ICallback<AadUserConversationMember> callback) {
send(HttpMethod.PUT, callback, newAadUserConversationMember);
}

/**
* Creates a AadUserConversationMember with a new object
*
* @param newAadUserConversationMember the object to create/update
* @return the created AadUserConversationMember
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public AadUserConversationMember put(final AadUserConversationMember newAadUserConversationMember) throws ClientException {
return send(HttpMethod.PUT, newAadUserConversationMember);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,27 @@ public ActivityBasedTimeoutPolicy post(final ActivityBasedTimeoutPolicy newActiv
return send(HttpMethod.POST, newActivityBasedTimeoutPolicy);
}

/**
* Creates a ActivityBasedTimeoutPolicy with a new object
*
* @param newActivityBasedTimeoutPolicy the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final ActivityBasedTimeoutPolicy newActivityBasedTimeoutPolicy, final ICallback<ActivityBasedTimeoutPolicy> callback) {
send(HttpMethod.PUT, callback, newActivityBasedTimeoutPolicy);
}

/**
* Creates a ActivityBasedTimeoutPolicy with a new object
*
* @param newActivityBasedTimeoutPolicy the object to create/update
* @return the created ActivityBasedTimeoutPolicy
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public ActivityBasedTimeoutPolicy put(final ActivityBasedTimeoutPolicy newActivityBasedTimeoutPolicy) throws ClientException {
return send(HttpMethod.PUT, newActivityBasedTimeoutPolicy);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,27 @@ public ActivityHistoryItem post(final ActivityHistoryItem newActivityHistoryItem
return send(HttpMethod.POST, newActivityHistoryItem);
}

/**
* Creates a ActivityHistoryItem with a new object
*
* @param newActivityHistoryItem the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final ActivityHistoryItem newActivityHistoryItem, final ICallback<ActivityHistoryItem> callback) {
send(HttpMethod.PUT, callback, newActivityHistoryItem);
}

/**
* Creates a ActivityHistoryItem with a new object
*
* @param newActivityHistoryItem the object to create/update
* @return the created ActivityHistoryItem
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public ActivityHistoryItem put(final ActivityHistoryItem newActivityHistoryItem) throws ClientException {
return send(HttpMethod.PUT, newActivityHistoryItem);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,27 @@ public AdministrativeUnit post(final AdministrativeUnit newAdministrativeUnit) t
return send(HttpMethod.POST, newAdministrativeUnit);
}

/**
* Creates a AdministrativeUnit with a new object
*
* @param newAdministrativeUnit the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final AdministrativeUnit newAdministrativeUnit, final ICallback<AdministrativeUnit> callback) {
send(HttpMethod.PUT, callback, newAdministrativeUnit);
}

/**
* Creates a AdministrativeUnit with a new object
*
* @param newAdministrativeUnit the object to create/update
* @return the created AdministrativeUnit
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public AdministrativeUnit put(final AdministrativeUnit newAdministrativeUnit) throws ClientException {
return send(HttpMethod.PUT, newAdministrativeUnit);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,27 @@ public Alert post(final Alert newAlert) throws ClientException {
return send(HttpMethod.POST, newAlert);
}

/**
* Creates a Alert with a new object
*
* @param newAlert the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final Alert newAlert, final ICallback<Alert> callback) {
send(HttpMethod.PUT, callback, newAlert);
}

/**
* Creates a Alert with a new object
*
* @param newAlert the object to create/update
* @return the created Alert
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public Alert put(final Alert newAlert) throws ClientException {
return send(HttpMethod.PUT, newAlert);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,27 @@ public AndroidCompliancePolicy post(final AndroidCompliancePolicy newAndroidComp
return send(HttpMethod.POST, newAndroidCompliancePolicy);
}

/**
* Creates a AndroidCompliancePolicy with a new object
*
* @param newAndroidCompliancePolicy the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final AndroidCompliancePolicy newAndroidCompliancePolicy, final ICallback<AndroidCompliancePolicy> callback) {
send(HttpMethod.PUT, callback, newAndroidCompliancePolicy);
}

/**
* Creates a AndroidCompliancePolicy with a new object
*
* @param newAndroidCompliancePolicy the object to create/update
* @return the created AndroidCompliancePolicy
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public AndroidCompliancePolicy put(final AndroidCompliancePolicy newAndroidCompliancePolicy) throws ClientException {
return send(HttpMethod.PUT, newAndroidCompliancePolicy);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,27 @@ public AndroidCustomConfiguration post(final AndroidCustomConfiguration newAndro
return send(HttpMethod.POST, newAndroidCustomConfiguration);
}

/**
* Creates a AndroidCustomConfiguration with a new object
*
* @param newAndroidCustomConfiguration the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final AndroidCustomConfiguration newAndroidCustomConfiguration, final ICallback<AndroidCustomConfiguration> callback) {
send(HttpMethod.PUT, callback, newAndroidCustomConfiguration);
}

/**
* Creates a AndroidCustomConfiguration with a new object
*
* @param newAndroidCustomConfiguration the object to create/update
* @return the created AndroidCustomConfiguration
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public AndroidCustomConfiguration put(final AndroidCustomConfiguration newAndroidCustomConfiguration) throws ClientException {
return send(HttpMethod.PUT, newAndroidCustomConfiguration);
}

/**
* Sets the select clause for the request
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,27 @@ public AndroidGeneralDeviceConfiguration post(final AndroidGeneralDeviceConfigur
return send(HttpMethod.POST, newAndroidGeneralDeviceConfiguration);
}

/**
* Creates a AndroidGeneralDeviceConfiguration with a new object
*
* @param newAndroidGeneralDeviceConfiguration the object to create/update
* @param callback the callback to be called after success or failure
*/
public void put(final AndroidGeneralDeviceConfiguration newAndroidGeneralDeviceConfiguration, final ICallback<AndroidGeneralDeviceConfiguration> callback) {
send(HttpMethod.PUT, callback, newAndroidGeneralDeviceConfiguration);
}

/**
* Creates a AndroidGeneralDeviceConfiguration with a new object
*
* @param newAndroidGeneralDeviceConfiguration the object to create/update
* @return the created AndroidGeneralDeviceConfiguration
* @throws ClientException this exception occurs if the request was unable to complete for any reason
*/
public AndroidGeneralDeviceConfiguration put(final AndroidGeneralDeviceConfiguration newAndroidGeneralDeviceConfiguration) throws ClientException {
return send(HttpMethod.PUT, newAndroidGeneralDeviceConfiguration);
}

/**
* Sets the select clause for the request
*
Expand Down
Loading