OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OAuthConsumer
(Results
1 - 10
of
10
) sorted by null
/external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java
29
* has a name, which is a property of the
OAuthConsumer
. Other properties come
70
private final Map<String,
OAuthConsumer
> pool = new HashMap<String,
OAuthConsumer
>();
73
public
OAuthConsumer
getConsumer(String name) throws MalformedURLException {
74
OAuthConsumer
consumer;
82
OAuthConsumer
first = pool.get(name);
87
* Another thread just constructed an identical
OAuthConsumer
.
96
protected
OAuthConsumer
newConsumer(String name)
105
OAuthConsumer
consumer = new
OAuthConsumer
(consumerPropertie
[
all
...]
OAuthConsumer.java
31
public class
OAuthConsumer
implements Serializable {
40
public
OAuthConsumer
(String callbackURL, String consumerKey,
OAuthAccessor.java
28
* Properties of one User of an
OAuthConsumer
. Properties may be added freely,
38
public final
OAuthConsumer
consumer;
43
public OAuthAccessor(
OAuthConsumer
consumer) {
85
Object accepted = consumer.getProperty(
OAuthConsumer
.ACCEPT_ENCODING);
OAuthMessage.java
259
final
OAuthConsumer
consumer = accessor.consumer;
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/
HelloLicenseServlet.java
25
import oauth.signpost.
OAuthConsumer
;
72
OAuthConsumer
oauth =
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/com/example/
HelloLicenseServlet.java
25
import oauth.signpost.
OAuthConsumer
;
72
OAuthConsumer
oauth =
/external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java
31
import net.oauth.
OAuthConsumer
;
146
.getProperty(
OAuthConsumer
.ACCESSOR_SECRET);
226
* The name of the
OAuthConsumer
property whose value is the ParameterStyle
232
* The name of the
OAuthConsumer
property whose value is the Accept-Encoding
234
* @deprecated use {@link
OAuthConsumer
#ACCEPT_ENCODING} instead
237
public static final String ACCEPT_ENCODING =
OAuthConsumer
.ACCEPT_ENCODING;
/external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java
30
import net.oauth.
OAuthConsumer
;
96
final String key =
OAuthConsumer
.ACCESSOR_SECRET;
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
index.php
52
$this->consumer = new
OAuthConsumer
(
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php
10
class
OAuthConsumer
{
21
return "
OAuthConsumer
[key=$this->key,secret=$this->secret]";
72
* @param
OAuthConsumer
$consumer
81
* @param
OAuthConsumer
$consumer
Completed in 234 milliseconds