Uses of Class
org.jclouds.javax.annotation.Nullable

Packages that use Nullable
org.jclouds   
org.jclouds.collect   
org.jclouds.concurrent   
org.jclouds.crypto   
org.jclouds.domain.internal   
org.jclouds.encryption.internal   
org.jclouds.functions   
org.jclouds.http   
org.jclouds.http.internal   
org.jclouds.http.utils   
org.jclouds.internal   
org.jclouds.io   
org.jclouds.io.payloads   
org.jclouds.location.functions   
org.jclouds.predicates   
org.jclouds.predicates.validators   
org.jclouds.providers   
org.jclouds.rest   
org.jclouds.rest.internal   
org.jclouds.util   
 

Uses of Nullable in org.jclouds
 

Method parameters in org.jclouds with annotations of type Nullable
 PropertiesBuilder PropertiesBuilder.credentials(String identity, String credential)
           
 

Uses of Nullable in org.jclouds.collect
 

Method parameters in org.jclouds.collect with annotations of type Nullable
 boolean AbstractMapEntry.equals(Object object)
           
 

Uses of Nullable in org.jclouds.concurrent
 

Method parameters in org.jclouds.concurrent with annotations of type Nullable
static
<T> Map<T,Exception>
FutureIterables.awaitCompletion(Map<T,? extends Future<?>> responses, ExecutorService exec, Long maxTime, Logger logger, String logPrefix)
           
static
<F,T> Iterable<T>
FutureIterables.transformParallel(Iterable<F> fromIterable, com.google.common.base.Function<? super F,Future<T>> function, ExecutorService exec, Long maxTime)
           
static
<F,T> Iterable<T>
FutureIterables.transformParallel(Iterable<F> fromIterable, com.google.common.base.Function<? super F,Future<T>> function, ExecutorService exec, Long maxTime, Logger logger, String logPrefix)
           
static
<F,T> Iterable<T>
FutureIterables.transformParallel(Iterable<F> fromIterable, com.google.common.base.Function<? super F,Future<T>> function, ExecutorService exec, Long maxTime, Logger logger, String logPrefix, BackoffLimitedRetryHandler retryHandler, int maxRetries)
           
 

Uses of Nullable in org.jclouds.crypto
 

Method parameters in org.jclouds.crypto with annotations of type Nullable
static String Sha512Crypt.makeShadowLine(String password, String shadowPrefix, Crypto crypto)
          This method actually generates an Sha512 crypted password hash from a plaintext password and a salt.
static X509Certificate Pems.x509Certificate(com.google.common.io.InputSupplier<? extends InputStream> supplier, CertificateFactory certFactory)
          Returns the X509EncodedKeySpec that is pem encoded in the supplier.
 

Uses of Nullable in org.jclouds.domain.internal
 

Constructor parameters in org.jclouds.domain.internal with annotations of type Nullable
LocationImpl(LocationScope scope, String id, String description, Location parent, Iterable<String> iso3166Codes, Map<String,Object> metadata)
           
ResourceMetadataImpl(String providerId, String name, Location location, URI uri, Map<String,String> userMetadata)
           
ResourceMetadataImpl(String providerId, String name, Location location, URI uri, Map<String,String> userMetadata)
           
ResourceMetadataImpl(String providerId, String name, Location location, URI uri, Map<String,String> userMetadata)
           
ResourceMetadataImpl(String providerId, String name, Location location, URI uri, Map<String,String> userMetadata)
           
 

Uses of Nullable in org.jclouds.encryption.internal
 

Constructor parameters in org.jclouds.encryption.internal with annotations of type Nullable
JCECrypto(Provider provider)
           
 

Uses of Nullable in org.jclouds.functions
 

Constructor parameters in org.jclouds.functions with annotations of type Nullable
ExceptionToValueOrPropagate(Class<E> matchingClass, T value)
           
 

Uses of Nullable in org.jclouds.http
 

Constructor parameters in org.jclouds.http with annotations of type Nullable
HttpMessage(Payload payload, com.google.common.collect.Multimap<String,String> headers)
           
HttpRequest(String method, URI endpoint, char[] skips, List<HttpRequestFilter> requestFilters, Payload payload)
           
HttpRequest(String method, URI endpoint, char[] skips, List<HttpRequestFilter> requestFilters, Payload payload, com.google.common.collect.Multimap<String,String> headers)
           
HttpRequest(String method, URI endpoint, com.google.common.collect.Multimap<String,String> headers, Payload payload)
           
HttpResponse(int statusCode, String message, Payload payload)
           
HttpResponse(int statusCode, String message, Payload payload, com.google.common.collect.Multimap<String,String> headers)
           
HttpResponseException(String message, HttpCommand command, HttpResponse response)
           
HttpResponseException(String message, HttpCommand command, HttpResponse response, String content)
           
HttpResponseException(String message, HttpCommand command, HttpResponse response, String content, Throwable cause)
           
HttpResponseException(String message, HttpCommand command, HttpResponse response, Throwable cause)
           
 

Uses of Nullable in org.jclouds.http.internal
 

Constructor parameters in org.jclouds.http.internal with annotations of type Nullable
PayloadEnclosingImpl(Payload payload)
           
 

Uses of Nullable in org.jclouds.http.utils
 

Method parameters in org.jclouds.http.utils with annotations of type Nullable
static String ModifyRequest.makeQueryLine(com.google.common.collect.Multimap<String,String> params, Comparator<Map.Entry<String,String>> sorter, char... skips)
           
 

Uses of Nullable in org.jclouds.internal
 

Constructor parameters in org.jclouds.internal with annotations of type Nullable
ClassMethodArgs(Class<?> asyncClass, Method method, Object[] args)
           
 

Uses of Nullable in org.jclouds.io
 

Methods in org.jclouds.io with annotations of type Nullable
 String ContentMetadata.getContentDisposition()
          Specifies presentational information for the object.
 String ContentMetadata.getContentEncoding()
          Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied in order to obtain the media-type referenced by the Content-Type header field.
 String ContentMetadata.getContentLanguage()
          Get Content Language of the payload

Not all providers may support it

 Long ContentMetadata.getContentLength()
          Returns the total size of the payload, or the chunk that's available.
 byte[] ContentMetadata.getContentMD5()
           
 String ContentMetadata.getContentType()
          A standard MIME type describing the format of the contents.
 

Method parameters in org.jclouds.io with annotations of type Nullable
 ContentMetadataBuilder ContentMetadataBuilder.contentDisposition(String contentDisposition)
           
 ContentMetadataBuilder ContentMetadataBuilder.contentEncoding(String contentEncoding)
           
 ContentMetadataBuilder ContentMetadataBuilder.contentLanguage(String contentLanguage)
           
 ContentMetadataBuilder ContentMetadataBuilder.contentLength(Long contentLength)
           
 ContentMetadataBuilder ContentMetadataBuilder.contentType(String contentType)
           
static UrlEncodedFormPayload Payloads.newUrlEncodedFormPayload(com.google.common.collect.Multimap<String,String> formParams, Comparator<Map.Entry<String,String>> sorter, char... skips)
           
 void MutableContentMetadata.setContentDisposition(String contentDisposition)
          Set Content Disposition of the payload

Not all providers may support it

 void MutableContentMetadata.setContentEncoding(String contentEncoding)
          Set Content Encoding of the payload

Not all providers may support it

 void MutableContentMetadata.setContentLanguage(String contentLanguage)
          Set Content Language of the payload

Not all providers may support it

 void MutableContentMetadata.setContentLength(Long contentLength)
           
 void MutableContentMetadata.setContentMD5(byte[] md5)
           
 void MutableContentMetadata.setContentType(String contentType)
           
 

Uses of Nullable in org.jclouds.io.payloads
 

Method parameters in org.jclouds.io.payloads with annotations of type Nullable
 void BaseMutableContentMetadata.setContentDisposition(String contentDisposition)
          Set Content Disposition of the payload

Not all providers may support it

 void BaseMutableContentMetadata.setContentEncoding(String contentEncoding)
          Set Content Encoding of the payload

Not all providers may support it

 void BaseMutableContentMetadata.setContentLanguage(String contentLanguage)
          Set Content Language of the payload

Not all providers may support it

 void BaseMutableContentMetadata.setContentLength(Long contentLength)
          
 void BaseMutableContentMetadata.setContentType(String contentType)
          
 

Constructor parameters in org.jclouds.io.payloads with annotations of type Nullable
UrlEncodedFormPayload(com.google.common.collect.Multimap<String,String> formParams, Comparator<Map.Entry<String,String>> sorter, char... skips)
           
 

Uses of Nullable in org.jclouds.location.functions
 

Method parameters in org.jclouds.location.functions with annotations of type Nullable
 URI ZoneToEndpoint.apply(Object from)
           
 URI RegionToEndpointOrProviderIfNull.apply(Object from)
           
 

Constructor parameters in org.jclouds.location.functions with annotations of type Nullable
RegionToEndpointOrProviderIfNull(URI defaultUri, String defaultProvider, Map<String,URI> regionToEndpoint)
           
 

Uses of Nullable in org.jclouds.predicates
 

Method parameters in org.jclouds.predicates with annotations of type Nullable
 boolean Validator.apply(T t)
           
abstract  void Validator.validate(T t)
          Validates the parameter
 

Uses of Nullable in org.jclouds.predicates.validators
 

Method parameters in org.jclouds.predicates.validators with annotations of type Nullable
 void AllLowerCaseValidator.validate(String s)
           
 

Uses of Nullable in org.jclouds.providers
 

Methods in org.jclouds.providers with annotations of type Nullable
 String ProviderMetadata.getCredentialName()
           
 

Uses of Nullable in org.jclouds.rest
 

Method parameters in org.jclouds.rest with annotations of type Nullable
<S,A> RestContext<S,A>
RestContextFactory.createContext(String provider, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring)
           
<S,A> RestContext<S,A>
RestContextFactory.createContext(String provider, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring)
           
<S,A> RestContext<S,A>
RestContextFactory.createContext(String provider, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring, Properties overrides)
           
<S,A> RestContext<S,A>
RestContextFactory.createContext(String provider, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring, Properties overrides)
           
<S,A> RestContext<S,A>
RestContextFactory.createContext(String provider, String identity, String credential, Properties properties)
           
<S,A> RestContext<S,A>
RestContextFactory.createContext(String provider, String identity, String credential, Properties properties)
           
<S,A> RestContextBuilder<S,A>
RestContextFactory.createContextBuilder(String provider, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring)
           
<S,A> RestContextBuilder<S,A>
RestContextFactory.createContextBuilder(String provider, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring)
           
<S,A> RestContextBuilder<S,A>
RestContextFactory.createContextBuilder(String providerName, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring, Properties _overrides)
          Creates a new remote context.
<S,A> RestContextBuilder<S,A>
RestContextFactory.createContextBuilder(String providerName, String identity, String credential, Iterable<? extends com.google.inject.Module> wiring, Properties _overrides)
          Creates a new remote context.
<S,A> RestContextBuilder<S,A>
RestContextFactory.createContextBuilder(String provider, String identity, String credential, Properties properties)
           
<S,A> RestContextBuilder<S,A>
RestContextFactory.createContextBuilder(String provider, String identity, String credential, Properties properties)
           
static
<S,A> RestContextBuilder<S,A>
Providers.initContextBuilder(Class<RestContextBuilder<S,A>> contextBuilderClass, Class<S> sync, Class<A> async, Properties properties)
           
static
<S,A> RestContextBuilder<S,A>
Providers.initContextBuilder(Class<RestContextBuilder<S,A>> contextBuilderClass, Class<S> sync, Class<A> async, Properties properties)
           
 

Uses of Nullable in org.jclouds.rest.internal
 

Method parameters in org.jclouds.rest.internal with annotations of type Nullable
static URI RestAnnotationProcessor.replaceQuery(javax.inject.Provider<javax.ws.rs.core.UriBuilder> uriBuilderProvider, URI in, String newQuery, Comparator<Map.Entry<String,String>> sorter, char... skips)
           
 URI RestAnnotationProcessor.replaceQuery(URI in, String newQuery, Comparator<Map.Entry<String,String>> sorter)
           
 

Uses of Nullable in org.jclouds.util
 

Method parameters in org.jclouds.util with annotations of type Nullable
static
<S,A> RestContextBuilder<S,A>
Utils.initContextBuilder(Class<RestContextBuilder<S,A>> contextBuilderClass, Class<S> sync, Class<A> async, Properties properties)
          Deprecated. 
static
<S,A> RestContextBuilder<S,A>
Utils.initContextBuilder(Class<RestContextBuilder<S,A>> contextBuilderClass, Class<S> sync, Class<A> async, Properties properties)
          Deprecated. 
static Credentials CredentialUtils.overrideCredentialsIfSupplied(Credentials defaultCredentials, Credentials overridingCredentials)
           
static Credentials Utils.overrideCredentialsIfSupplied(Credentials defaultCredentials, Credentials overridingCredentials)
          Deprecated. 
 



Copyright © 2009-2011 jclouds. All Rights Reserved.