Skip to content

Commit

Permalink
Update 3.1 EntityPart providers for Injectless Client
Browse files Browse the repository at this point in the history
Signed-off-by: jansupol <jan.supol@oracle.com>
  • Loading branch information
jansupol committed May 4, 2023
1 parent 46d52bc commit 665655f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021, 2023 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -20,6 +20,7 @@
import jakarta.inject.Singleton;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.EntityPart;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
Expand Down Expand Up @@ -50,8 +51,12 @@ public class EntityPartReader implements MessageBodyReader<List<EntityPart>> {

private MultiPartReaderClientSide multiPartReaderClientSide;

private final Providers providers;

@Inject
Providers providers;
public EntityPartReader(@Context Providers providers) {
this.providers = providers;
}

@Override
public boolean isReadable(Class<?> type, Type generic, Annotation[] annotations, MediaType mediaType) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021, 2023 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -20,6 +20,7 @@
import jakarta.inject.Singleton;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.EntityPart;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
Expand Down Expand Up @@ -47,8 +48,12 @@ public class EntityPartWriter implements MessageBodyWriter<List<EntityPart>> {

private MultiPartWriter multiPartWriter;

private final Providers providers;

@Inject
Providers providers;
public EntityPartWriter(@Context Providers providers) {
this.providers = providers;
}

@Override
public boolean isWriteable(Class<?> type, Type generic, Annotation[] annotations, MediaType mediaType) {
Expand Down

0 comments on commit 665655f

Please sign in to comment.