Skip to content

Commit

Permalink
HDFS-9960. OzoneHandler : Add localstorage support for keys. Contribu…
Browse files Browse the repository at this point in the history
…ted by Anu Engineer.
  • Loading branch information
cnauroth authored and omalley committed Apr 25, 2018
1 parent 4009b66 commit 7c55d7f
Show file tree
Hide file tree
Showing 9 changed files with 1,004 additions and 38 deletions.
Expand Up @@ -20,8 +20,10 @@

import org.apache.hadoop.ozone.web.exceptions.OzoneExceptionMapper;
import org.apache.hadoop.ozone.web.handlers.BucketHandler;
import org.apache.hadoop.ozone.web.handlers.KeyHandler;
import org.apache.hadoop.ozone.web.handlers.ServiceFilter;
import org.apache.hadoop.ozone.web.handlers.VolumeHandler;
import org.apache.hadoop.ozone.web.messages.LengthInputStreamMessageBodyWriter;
import org.apache.hadoop.ozone.web.messages.StringMessageBodyWriter;

import javax.ws.rs.core.Application;
Expand All @@ -41,7 +43,9 @@ public Set<Class<?>> getClasses() {
HashSet<Class<?>> set = new HashSet<>();
set.add(BucketHandler.class);
set.add(VolumeHandler.class);
set.add(KeyHandler.class);
set.add(OzoneExceptionMapper.class);
set.add(LengthInputStreamMessageBodyWriter.class);
set.add(StringMessageBodyWriter.class);
return set;
}
Expand Down

0 comments on commit 7c55d7f

Please sign in to comment.