mirror of
https://github.com/valitydev/anapi-v2.git
synced 2024-11-06 08:35:19 +00:00
Dependecy updated
This commit is contained in:
parent
9e81d7e8f7
commit
e9889116e8
4
pom.xml
4
pom.xml
@ -56,12 +56,10 @@
|
|||||||
<artifactId>payout-manager-proto</artifactId>
|
<artifactId>payout-manager-proto</artifactId>
|
||||||
<version>1.17-8aa3eb8</version>
|
<version>1.17-8aa3eb8</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.rbkmoney</groupId>
|
<groupId>com.rbkmoney</groupId>
|
||||||
<artifactId>swag-anapi-v2</artifactId>
|
<artifactId>swag-anapi-v2</artifactId>
|
||||||
<!-- Server generated classes -->
|
<version>1.29-27f5575-server</version>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.rbkmoney</groupId>
|
<groupId>com.rbkmoney</groupId>
|
||||||
|
@ -6,11 +6,10 @@ import com.rbkmoney.magista.*;
|
|||||||
import com.rbkmoney.openapi.anapi_v2.api.*;
|
import com.rbkmoney.openapi.anapi_v2.api.*;
|
||||||
import com.rbkmoney.openapi.anapi_v2.model.*;
|
import com.rbkmoney.openapi.anapi_v2.model.*;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.SneakyThrows;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.http.ResponseEntity;
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
|
||||||
import org.springframework.web.context.request.NativeWebRequest;
|
import org.springframework.web.context.request.NativeWebRequest;
|
||||||
|
|
||||||
import javax.validation.Valid;
|
import javax.validation.Valid;
|
||||||
@ -23,6 +22,7 @@ import static com.rbkmoney.anapi.v2.util.DeadlineUtil.checkDeadline;
|
|||||||
|
|
||||||
|
|
||||||
@Slf4j
|
@Slf4j
|
||||||
|
@PreAuthorize("hasAuthority('invoices:read')")
|
||||||
@Controller
|
@Controller
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
@SuppressWarnings("ParameterName")
|
@SuppressWarnings("ParameterName")
|
||||||
@ -40,7 +40,6 @@ public class SearchController implements PaymentsApi, ChargebacksApi, InvoicesAp
|
|||||||
return PaymentsApi.super.getRequest();
|
return PaymentsApi.super.getRequest();
|
||||||
}
|
}
|
||||||
|
|
||||||
@SneakyThrows
|
|
||||||
@Override
|
@Override
|
||||||
public ResponseEntity<InlineResponse20010> searchPayments(String xRequestID,
|
public ResponseEntity<InlineResponse20010> searchPayments(String xRequestID,
|
||||||
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
||||||
@ -105,11 +104,6 @@ public class SearchController implements PaymentsApi, ChargebacksApi, InvoicesAp
|
|||||||
return ResponseEntity.ok(response);
|
return ResponseEntity.ok(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SneakyThrows
|
|
||||||
@GetMapping(
|
|
||||||
value = "/chargebacks",
|
|
||||||
produces = {"application/json; charset=utf-8"}
|
|
||||||
)
|
|
||||||
@Override
|
@Override
|
||||||
public ResponseEntity<InlineResponse2008> searchChargebacks(String xRequestID,
|
public ResponseEntity<InlineResponse2008> searchChargebacks(String xRequestID,
|
||||||
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
||||||
@ -149,11 +143,6 @@ public class SearchController implements PaymentsApi, ChargebacksApi, InvoicesAp
|
|||||||
return ResponseEntity.ok(response);
|
return ResponseEntity.ok(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SneakyThrows
|
|
||||||
@GetMapping(
|
|
||||||
value = "/invoices",
|
|
||||||
produces = {"application/json; charset=utf-8"}
|
|
||||||
)
|
|
||||||
@Override
|
@Override
|
||||||
public ResponseEntity<InlineResponse2009> searchInvoices(String xRequestID,
|
public ResponseEntity<InlineResponse2009> searchInvoices(String xRequestID,
|
||||||
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
||||||
@ -192,11 +181,6 @@ public class SearchController implements PaymentsApi, ChargebacksApi, InvoicesAp
|
|||||||
return ResponseEntity.ok(response);
|
return ResponseEntity.ok(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SneakyThrows
|
|
||||||
@GetMapping(
|
|
||||||
value = "/payouts",
|
|
||||||
produces = {"application/json; charset=utf-8"}
|
|
||||||
)
|
|
||||||
@Override
|
@Override
|
||||||
public ResponseEntity<InlineResponse20011> searchPayouts(String xRequestID,
|
public ResponseEntity<InlineResponse20011> searchPayouts(String xRequestID,
|
||||||
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
||||||
@ -229,11 +213,6 @@ public class SearchController implements PaymentsApi, ChargebacksApi, InvoicesAp
|
|||||||
return ResponseEntity.ok(response);
|
return ResponseEntity.ok(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SneakyThrows
|
|
||||||
@GetMapping(
|
|
||||||
value = "/refunds",
|
|
||||||
produces = {"application/json; charset=utf-8"}
|
|
||||||
)
|
|
||||||
@Override
|
@Override
|
||||||
public ResponseEntity<InlineResponse20012> searchRefunds(String xRequestID,
|
public ResponseEntity<InlineResponse20012> searchRefunds(String xRequestID,
|
||||||
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
@NotNull @Size(min = 1, max = 40) @Valid String partyID,
|
||||||
@ -270,7 +249,6 @@ public class SearchController implements PaymentsApi, ChargebacksApi, InvoicesAp
|
|||||||
refundStatus,
|
refundStatus,
|
||||||
excludedShops,
|
excludedShops,
|
||||||
continuationToken);
|
continuationToken);
|
||||||
|
|
||||||
InlineResponse20012 response = searchService.findRefunds(query);
|
InlineResponse20012 response = searchService.findRefunds(query);
|
||||||
return ResponseEntity.ok(response);
|
return ResponseEntity.ok(response);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user