Skip to content

Commit

Permalink
KAA-1279: Firx compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sashadidukh committed Oct 1, 2016
1 parent db1fc73 commit ffba130
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -22,7 +22,7 @@
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;

import org.kaaproject.kaa.common.dto.ctl.CtlSchemaDto;
import org.kaaproject.kaa.common.dto.ctl.CTLSchemaDto;
import org.kaaproject.kaa.common.dto.ctl.CTLSchemaExportMethod;
import org.kaaproject.kaa.common.dto.ctl.CTLSchemaMetaInfoDto;
import org.kaaproject.kaa.common.dto.file.FileData;
Expand Down Expand Up @@ -76,7 +76,7 @@ public class CtlController extends AbstractAdminController {
@ApiResponse(code = 500, message = "An unexpected error occurred on the server side")})
@RequestMapping(value = "CTL/saveSchema", params = {"body"}, method = RequestMethod.POST)
@ResponseBody
public CtlSchemaDto saveCtlSchemaWithAppToken(
public CTLSchemaDto saveCtlSchemaWithAppToken(
@ApiParam(name = "body", value = "The CTL schema structure", required = true)
@RequestParam String body,
@ApiParam(name = "tenantId", value = "A unique tenant identifier", required = false)
Expand Down Expand Up @@ -156,7 +156,7 @@ public void deleteCtlSchemaByFqnVersionTenantIdAndApplicationToken(
@ApiResponse(code = 500, message = "An unexpected error occurred on the server side")})
@RequestMapping(value = "CTL/getSchema", params = {"fqn", "version"}, method = RequestMethod.GET)
@ResponseBody
public CtlSchemaDto getCtlSchemaByFqnVersionTenantIdAndApplicationToken(
public CTLSchemaDto getCtlSchemaByFqnVersionTenantIdAndApplicationToken(
@ApiParam(name = "fqn",
value = "The fully qualified name of the CTL schema", required = true)
@RequestParam String fqn,
Expand Down Expand Up @@ -192,7 +192,7 @@ public CtlSchemaDto getCtlSchemaByFqnVersionTenantIdAndApplicationToken(
@ApiResponse(code = 500, message = "An unexpected error occurred on the server side")})
@RequestMapping(value = "CTL/getSchemaById", params = {"id"}, method = RequestMethod.GET)
@ResponseBody
public CtlSchemaDto getCtlSchemaById(
public CTLSchemaDto getCtlSchemaById(
@ApiParam(name = "id", value = "A unique CTL schema identifier", required = true)
@RequestParam String id) throws KaaAdminServiceException {
return ctlService.getCtlSchemaById(id);
Expand Down

0 comments on commit ffba130

Please sign in to comment.