Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
fix(documentation): enunciate for ProjectVersionResource
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Aug 2, 2016
1 parent 25ad146 commit 6baa6df
Showing 1 changed file with 18 additions and 0 deletions.
@@ -0,0 +1,18 @@
package org.zanata.rest.enunciate;

import javax.ws.rs.Consumes;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import org.codehaus.enunciate.modules.jersey.ExternallyManagedLifecycle;

/**
* @author Alex Eng <a href="mailto:aeng@redhat.com">aeng@redhat.com</a>
*/
@Path(ProjectVersionResource.SERVICE_PATH)
@ExternallyManagedLifecycle
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Consumes({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
interface ProjectVersionResource extends org.zanata.rest.service.ProjectVersionResource {
}

0 comments on commit 6baa6df

Please sign in to comment.