Skip to content

Commit

Permalink
Added the missing user/read in the SSL build.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Jenkins committed Jun 27, 2011
1 parent 97a62d2 commit 0799497
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ dist
.classpath
.project
bin
web/META-INF/system.properties
30 changes: 30 additions & 0 deletions web/WEB-INF/web-ssl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,36 @@
<url-pattern>/config/read</url-pattern>
</servlet-mapping>

<!-- Read Personal Information About Users -->
<servlet>
<description>
Give personal information about other users.
</description>
<servlet-name>UserReadServlet</servlet-name>
<servlet-class>org.ohmage.jee.servlet.AwDataServlet</servlet-class>
<init-param>
<param-name>awRequestCreatorName</param-name>
<param-value>userReadAwRequestCreator</param-value>
</init-param>
<init-param>
<param-name>controllerName</param-name>
<param-value>userReadController</param-value>
</init-param>
<init-param>
<param-name>httpServletRequestValidatorName</param-name>
<param-value>userReadHttpServletRequestValidator</param-value>
</init-param>
<init-param>
<param-name>responseWriterName</param-name>
<param-value>userReadResponseWriter</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>UserReadServlet</servlet-name>
<url-pattern>/user/read</url-pattern>
</servlet-mapping>

<!-- Mobility Data Upload -->
<servlet>
<description>
Expand Down

0 comments on commit 0799497

Please sign in to comment.