EMMA Coverage Report (generated Mon Oct 17 05:41:20 EDT 2011)
[all classes][org.jclouds.blobstore.attr]

COVERAGE SUMMARY FOR SOURCE FILE [FolderCapability.java]

nameclass, %method, %block, %line, %
FolderCapability.java0%   (0/1)0%   (0/4)0%   (0/118)0%   (0/11)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FolderCapability0%   (0/1)0%   (0/4)0%   (0/118)0%   (0/11)
<static initializer> 0%   (0/1)0%   (0/104)0%   (0/11)
FolderCapability (String, int): void 0%   (0/1)0%   (0/5)0%   (0/1)
valueOf (String): FolderCapability 0%   (0/1)0%   (0/5)0%   (0/1)
values (): FolderCapability [] 0%   (0/1)0%   (0/4)0%   (0/1)

1/**
2 * Licensed to jclouds, Inc. (jclouds) under one or more
3 * contributor license agreements.  See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership.  jclouds licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License.  You may obtain a copy of the License at
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied.  See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.jclouds.blobstore.attr;
20 
21/**
22 * Represents the capabilities of a BlobStore
23 * 
24 * @author Adrian Cole
25 * 
26 */
27public enum FolderCapability {
28 
29   /**
30    * deletion of a container is recursive
31    */
32   RECURSIVE_DELETE,
33 
34   /**
35    * There's a container that exists at the root of the service
36    */
37   ROOTCONTAINER,
38 
39   /**
40    * Containers (and subcontainers) are created implicitly
41    */
42   SKIP_CREATE_CONTAINER,
43 
44   /**
45    * containers can have key-value pairs associated with them
46    */
47   METADATA,
48 
49   /**
50    * containers have an etag associated with them
51    */
52   ETAG,
53 
54   /**
55    * containers have a system generated ID associated with them
56    */
57   ID,
58 
59   /**
60    * container will have last modified date associated with them
61    */
62   LAST_MODIFIED,
63 
64 
65   /**
66    * timestamps are precise in milliseconds (as opposed to seconds)
67    */
68   MILLISECOND_PRECISION,
69 
70   /**
71    * container size in bytes is exposed by service listing
72    */
73   SIZE,
74 
75 
76   /**
77    * possible to expose a container to anonymous access
78    */
79   PUBLIC
80 
81}

[all classes][org.jclouds.blobstore.attr]
EMMA 2.0.5312 (C) Vladimir Roubtsov