/external/oauth/core/src/main/java/net/oauth/http/ |
HttpClient.java | 17 package net.oauth.http; 20 import net.oauth.OAuthMessage;
|
HttpResponseMessage.java | 17 package net.oauth.http;
|
/external/testng/ |
travis.sh | 7 -Dsonar.github.oauth=$SONAR_GITHUB_OAUTH \ 9 echo "No oauth token available"
|
/external/oauth/core/src/main/java/net/oauth/ |
OAuthValidator.java | 16 package net.oauth; 37 * The implementation should throw exceptions that conform to the OAuth 38 * <a href="http://wiki.oauth.net/ProblemReporting">Problem Reporting extension</a>.
|
OAuthException.java | 16 package net.oauth; 19 * Superclass for extensions thrown by the OAuth library.
|
OAuthServiceProvider.java | 17 package net.oauth; 22 * Properties of an OAuth Service Provider.
|
OAuthConsumer.java | 17 package net.oauth; 22 import net.oauth.http.HttpMessage; 25 * Properties of an OAuth Consumer. Properties may be added freely, e.g. to 66 * href="http://oauth.pbwiki.com/AccessorSecret">Accessor Secret</a>.
|
OAuthProblemException.java | 17 package net.oauth; 21 import net.oauth.http.HttpMessage; 22 import net.oauth.http.HttpResponseMessage; 25 * Describes an OAuth-related problem, using a set of named parameters. One 28 * response that conforms to the OAuth <a 29 * href="http://wiki.oauth.net/ProblemReporting">Problem Reporting
|
OAuthAccessor.java | 17 package net.oauth; 25 import net.oauth.http.HttpMessage; 87 message.getHeaders().add(new OAuth.Parameter(HttpMessage.ACCEPT_ENCODING, accepted.toString()));
|
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
HttpClientPool.java | 17 package net.oauth.client.httpclient4;
|
HttpClient4.java | 17 package net.oauth.client.httpclient4; 23 import net.oauth.client.ExcerptInputStream; 24 import net.oauth.http.HttpMessage; 25 import net.oauth.http.HttpResponseMessage; 42 * Utility methods for an OAuth client based on the <a 48 public class HttpClient4 implements net.oauth.http.HttpClient {
|
HttpMethodResponse.java | 17 package net.oauth.client.httpclient4; 25 import net.oauth.OAuth; 26 import net.oauth.client.ExcerptInputStream; 27 import net.oauth.http.HttpMessage; 28 import net.oauth.http.HttpResponseMessage; 48 * from OAuth WWW-Authenticate headers and the body. The header parameters 85 headers.add(new OAuth.Parameter(header.getName(), header.getValue()));
|
/external/oauth/core/src/main/java/net/oauth/client/ |
OAuthResponseMessage.java | 17 package net.oauth.client; 22 import net.oauth.OAuth; 23 import net.oauth.OAuthMessage; 24 import net.oauth.OAuthProblemException; 25 import net.oauth.http.HttpMessage; 26 import net.oauth.http.HttpResponseMessage; 43 for (OAuth.Parameter parameter : decodeAuthorization(header.getValue())) { 72 addParameters(OAuth.decodeForm(body.trim()));
|
URLConnectionClient.java | 17 package net.oauth.client; 28 import net.oauth.http.HttpClient; 29 import net.oauth.http.HttpMessage; 30 import net.oauth.http.HttpResponseMessage;
|
OAuthClient.java | 17 package net.oauth.client; 29 import net.oauth.OAuth; 30 import net.oauth.OAuthAccessor; 31 import net.oauth.OAuthConsumer; 32 import net.oauth.OAuthException; 33 import net.oauth.OAuthMessage; 34 import net.oauth.OAuthProblemException; 35 import net.oauth.http.HttpClient; 36 import net.oauth.http.HttpMessage [all...] |
ExcerptInputStream.java | 1 package net.oauth.client;
|
URLConnectionResponse.java | 17 package net.oauth.client; 26 import net.oauth.OAuth; 27 import net.oauth.http.HttpMessage; 28 import net.oauth.http.HttpResponseMessage; 40 * from OAuth WWW-Authenticate headers and the body. The header parameters 82 headers.add(new OAuth.Parameter(name, value)); 89 headers.add(new OAuth.Parameter(CONTENT_TYPE, connection
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
PLAINTEXT.java | 17 package net.oauth.signature; 19 import net.oauth.OAuth; 20 import net.oauth.OAuthException; 41 signature = OAuth.percentEncode(getConsumerSecret()) + '&' 42 + OAuth.percentEncode(getTokenSecret());
|
HMAC_SHA1.java | 17 package net.oauth.signature; 27 import net.oauth.OAuth; 28 import net.oauth.OAuthException; 67 String keyString = OAuth.percentEncode(getConsumerSecret()) 68 + '&' + OAuth.percentEncode(getTokenSecret()); 81 private static final String ENCODING = OAuth.ENCODING;
|
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/ |
oauth.py | 5 """Module contains a simple client lib to interact with OAuth.""" 12 from fake_device_server import oauth namespace 16 """Client library for interacting with OAuth.""" 20 self, oauth.OAUTH_PATH, *args, **kwargs)
|
/external/autotest/client/common_lib/cros/fake_device_server/ |
devices_unittest.py | 16 from fake_device_server import oauth namespace 29 self.oauth = oauth.OAuth(self.fail_control) 30 self.commands = commands.Commands(self.oauth, self.fail_control) 34 self.oauth,
|
registration_tickets_unittest.py | 17 from fake_device_server import oauth namespace 32 self.oauth = oauth.OAuth(self.fail_control) 33 self.commands = commands.Commands(self.oauth, self.fail_control) 37 self.oauth,
|
server.py | 23 from fake_device_server import oauth namespace 48 oauth_handler = oauth.OAuth(fail_control_handler) 80 '/' + oauth.OAUTH_PATH,
|
/external/oauth/core/src/main/java/ |
Android.mk | 5 LOCAL_MODULE := oauth
|
/external/autotest/client/common_lib/cros/tendo/ |
buffet_config.py | 10 from autotest_lib.client.common_lib.cros.fake_device_server import oauth namespace 18 oauth.OAUTH_PATH) 20 TEST_API_KEY = oauth.TEST_API_KEY
|