Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 uid=1(daemon) gid=1(daemon) grupos=1(daemon) Safe-mode: OFF (not secure) /opt/apex_tdfonline/www/js/shindig/features/src/main/javascript/features/opensocial-reference/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*global opensocial */
/**
* @fileoverview ResponseItem containing information about a specific response
* from the server.
*/
/**
* @class
* Represents a response that was generated
* by processing a data request item on the server.
*
* @name opensocial.ResponseItem
*/
/**
* Represents a response that was generated by processing a data request item
* on the server.
*
* @private
* @constructor
*/
opensocial.ResponseItem = function(originalDataRequest, data,
opt_errorCode, opt_errorMessage) {
this.originalDataRequest_ = originalDataRequest;
this.data_ = data;
this.errorCode_ = opt_errorCode;
this.errorMessage_ = opt_errorMessage;
};
/**
* Returns true if there was an error in fetching this data from the server.
*
* @return {Boolean} True if there was an error; otherwise, false
*/
opensocial.ResponseItem.prototype.hadError = function() {
return !!this.errorCode_;
};
/**
* @static
* @class
*
* Error codes that a response item can return.
*
* @name opensocial.ResponseItem.Error
*/
opensocial.ResponseItem.Error = {
/**
* This container does not support the request that was made.
*
* @member opensocial.ResponseItem.Error
*/
NOT_IMPLEMENTED : 'notImplemented',
/**
* The gadget does not have access to the requested data.
* To get access, use
* <a href="opensocial.html#requestPermission">
* opensocial.requestPermission()</a>.
*
* @member opensocial.ResponseItem.Error
*/
UNAUTHORIZED : 'unauthorized',
/**
* The gadget can never have access to the requested data.
*
* @member opensocial.ResponseItem.Error
*/
FORBIDDEN : 'forbidden',
/**
* The request was invalid. Example: 'max' was -1.
*
* @member opensocial.ResponseItem.Error
*/
BAD_REQUEST : 'badRequest',
/**
* The request encountered an unexpected condition that
* prevented it from fulfilling the request.
*
* @member opensocial.ResponseItem.Error
*/
INTERNAL_ERROR : 'internalError',
/**
* The gadget exceeded a quota on the request. Example quotas include a
* max number of calls per day, calls per user per day, calls within a
* certain time period and so forth.
*
* @member opensocial.ResponseItem.Error
*/
LIMIT_EXCEEDED : 'limitExceeded'
};
/**
* If the request had an error, returns the error code.
* The error code can be container-specific
* or one of the values defined by
* <a href="opensocial.ResponseItem.Error.html"><code>Error</code></a>.
*
* @return {String} The error code, or null if no error occurred
*/
opensocial.ResponseItem.prototype.getErrorCode = function() {
return this.errorCode_;
};
/**
* If the request had an error, returns the error message.
*
* @return {String} A human-readable description of the error that occurred;
* can be null, even if an error occurred
*/
opensocial.ResponseItem.prototype.getErrorMessage = function() {
return this.errorMessage_;
};
/**
* Returns the original data request.
*
* @return {opensocial.DataRequest} The data request used to fetch this data
* response
*/
opensocial.ResponseItem.prototype.getOriginalDataRequest = function() {
return this.originalDataRequest_;
};
/**
* Gets the response data.
*
* @return {Object} The requested value calculated by the server; the type of
* this value is defined by the type of request that was made
*/
opensocial.ResponseItem.prototype.getData = function() {
return this.data_;
};
|
:: Command execute :: | |
--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.289 ]-- |