Added: incubator/libcloud/sandbox/java/trunk/doc/base/package-tree.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/package-tree.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/package-tree.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/package-tree.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,153 @@ + + + + + + +base Class Hierarchy + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package base +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/base/package-use.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/package-use.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/package-use.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/package-use.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,311 @@ + + + + + + +Uses of Package base + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Package
base

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use base
base.connection  
libcloud  
libcloud.providers.amazon  
libcloud.providers.ibm  
libcloud.providers.rackspace  
simplecloud.storage  
simplecloud.storage.providers.amazon  
simplecloud.storage.providers.nirvanix  
+  +

+ + + + + + + + +
+Classes in base used by base.connection
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+ + + + + + + + +
+Classes in base used by libcloud
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+ + + + + + + + +
+Classes in base used by libcloud.providers.amazon
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+ + + + + + + + +
+Classes in base used by libcloud.providers.ibm
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+ + + + + + + + +
+Classes in base used by libcloud.providers.rackspace
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+ + + + + + + + +
+Classes in base used by simplecloud.storage
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+ + + + + + + + +
+Classes in base used by simplecloud.storage.providers.amazon
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+ + + + + + + + +
+Classes in base used by simplecloud.storage.providers.nirvanix
Driver + +
+          Base class which represents a "Driver" or "Adapter" and conforms to + libcloud's APIs.
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/base/types/Item.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/types/Item.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/types/Item.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/types/Item.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,553 @@ + + + + + + +Item + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +base.types +
+Class Item

+
+java.lang.Object
+  extended by base.types.Item
+
+
+
All Implemented Interfaces:
IItem
+
+
+
+
public class Item
extends java.lang.Object
implements IItem
+ + +

+Concrete class which represents a base unit of data. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + +
+Constructor Summary
Item() + +
+           
Item(org.apache.http.HttpEntity entity) + +
+           
Item(java.io.InputStream content, + java.lang.String contentType, + java.lang.String contentEncoding, + long length) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ java.io.InputStreamgetContent() + +
+          Returns the raw InputStream of the data.
+ java.lang.StringgetContentEncoding() + +
+          Indicates this data's Content-Encoding.
+ longgetContentLength() + +
+          Indicates the length of the data.
+ java.lang.StringgetContentString() + +
+          Represents the content's stream as a String.
+ java.lang.StringgetContentType() + +
+          Indicates this data's Content-Type.
+ voidsetContent(java.io.InputStream content) + +
+          Sets the InputStream which defines this data.
+ voidsetContentEncoding(java.lang.String encoding) + +
+          Sets the Content-Encoding of this data.
+ voidsetContentLength(long length) + +
+          Sets the Content-Length of this data.
+ voidsetContentString(java.lang.String data) + +
+          Sets the String that represents this data.
+ voidsetContentType(java.lang.String type) + +
+          Sets the Content-Type of this data.
+ java.lang.StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Item

+
+public Item()
+
+
+
+ +

+Item

+
+public Item(java.io.InputStream content,
+            java.lang.String contentType,
+            java.lang.String contentEncoding,
+            long length)
+
+
+
+ +

+Item

+
+public Item(org.apache.http.HttpEntity entity)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getContentString

+
+public java.lang.String getContentString()
+
+
Description copied from interface: IItem
+
Represents the content's stream as a String. + + NOTE: The data's InputStream may not be consumable after this +

+

+
Specified by:
getContentString in interface IItem
+
+
+ +
Returns:
String represents the data as a String
+
+
+
+ +

+setContentString

+
+public void setContentString(java.lang.String data)
+
+
Description copied from interface: IItem
+
Sets the String that represents this data. +

+

+
Specified by:
setContentString in interface IItem
+
+
+
Parameters:
data - is the String that represents this data
+
+
+
+ +

+getContent

+
+public java.io.InputStream getContent()
+
+
Description copied from interface: IItem
+
Returns the raw InputStream of the data. +

+

+
Specified by:
getContent in interface IItem
+
+
+ +
Returns:
InputStream is the data's InputStream
+
+
+
+ +

+setContent

+
+public void setContent(java.io.InputStream content)
+
+
Description copied from interface: IItem
+
Sets the InputStream which defines this data. +

+

+
Specified by:
setContent in interface IItem
+
+
+
Parameters:
content - is the InputStream to define the data
+
+
+
+ +

+getContentType

+
+public java.lang.String getContentType()
+
+
Description copied from interface: IItem
+
Indicates this data's Content-Type. +

+

+
Specified by:
getContentType in interface IItem
+
+
+ +
Returns:
String defines this data's Content-Type.
+
+
+
+ +

+setContentType

+
+public void setContentType(java.lang.String type)
+
+
Description copied from interface: IItem
+
Sets the Content-Type of this data. +

+

+
Specified by:
setContentType in interface IItem
+
+
+
Parameters:
type - is this data's Content-Type
+
+
+
+ +

+getContentEncoding

+
+public java.lang.String getContentEncoding()
+
+
Description copied from interface: IItem
+
Indicates this data's Content-Encoding. +

+

+
Specified by:
getContentEncoding in interface IItem
+
+
+ +
Returns:
String defines this data's Content-Encoding.
+
+
+
+ +

+setContentEncoding

+
+public void setContentEncoding(java.lang.String encoding)
+
+
Description copied from interface: IItem
+
Sets the Content-Encoding of this data. +

+

+
Specified by:
setContentEncoding in interface IItem
+
+
+
Parameters:
encoding - indicates the data's encoding
+
+
+
+ +

+getContentLength

+
+public long getContentLength()
+
+
Description copied from interface: IItem
+
Indicates the length of the data. +

+

+
Specified by:
getContentLength in interface IItem
+
+
+ +
Returns:
long indicates the length of the data
+
+
+
+ +

+setContentLength

+
+public void setContentLength(long length)
+
+
Description copied from interface: IItem
+
Sets the Content-Length of this data. +

+

+
Specified by:
setContentLength in interface IItem
+
+
+
Parameters:
length - is the data's length
+
+
+
+ +

+toString

+
+public java.lang.String toString()
+
+
+
Overrides:
toString in class java.lang.Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/base/types/class-use/Item.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/types/class-use/Item.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/types/class-use/Item.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/types/class-use/Item.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,144 @@ + + + + + + +Uses of Class base.types.Item + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
base.types.Item

+
+No usage of base.types.Item +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/base/types/package-frame.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/types/package-frame.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/types/package-frame.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/types/package-frame.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,32 @@ + + + + + + +base.types + + + + + + + + + + + +base.types + + + + +
+Classes  + +
+Item
+ + + + Added: incubator/libcloud/sandbox/java/trunk/doc/base/types/package-summary.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/types/package-summary.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/types/package-summary.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/types/package-summary.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,157 @@ + + + + + + +base.types + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package base.types +

+ + + + + + + + + +
+Class Summary
ItemConcrete class which represents a base unit of data.
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/base/types/package-tree.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/types/package-tree.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/types/package-tree.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/types/package-tree.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,154 @@ + + + + + + +base.types Class Hierarchy + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package base.types +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/base/types/package-use.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/base/types/package-use.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/base/types/package-use.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/base/types/package-use.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,144 @@ + + + + + + +Uses of Package base.types + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Package
base.types

+
+No usage of base.types +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/class-use/Example.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/class-use/Example.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/class-use/Example.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/class-use/Example.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,144 @@ + + + + + + +Uses of Class Example + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
Example

+
+No usage of Example +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/constant-values.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/constant-values.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/constant-values.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/constant-values.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,144 @@ + + + + + + +Constant Field Values + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Constant Field Values

+
+
+Contents + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + Added: incubator/libcloud/sandbox/java/trunk/doc/deprecated-list.html URL: http://svn.apache.org/viewvc/incubator/libcloud/sandbox/java/trunk/doc/deprecated-list.html?rev=1000513&view=auto ============================================================================== --- incubator/libcloud/sandbox/java/trunk/doc/deprecated-list.html (added) +++ incubator/libcloud/sandbox/java/trunk/doc/deprecated-list.html Thu Sep 23 16:02:24 2010 @@ -0,0 +1,144 @@ + + + + + + +Deprecated List + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Deprecated API

+
+
+Contents + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + +