Make BaseOrListParam and BaseParam visible outside of the package (#1710)

This commit is contained in:
Ian 2020-05-04 05:39:10 -04:00 committed by GitHub
parent 8b49142b94
commit 41c715dc2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ import ca.uhn.fhir.rest.api.QualifiedParamList;
import java.util.ArrayList;
import java.util.List;
abstract class BaseOrListParam<MT extends BaseOrListParam<?, ?>, PT extends IQueryParameterType> implements IQueryParameterOr<PT> {
public abstract class BaseOrListParam<MT extends BaseOrListParam<?, ?>, PT extends IQueryParameterType> implements IQueryParameterOr<PT> {
private List<PT> myList = new ArrayList<>();

View File

@ -31,7 +31,7 @@ import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException;
/**
* Base class for RESTful operation parameter types
*/
abstract class BaseParam implements IQueryParameterType {
public abstract class BaseParam implements IQueryParameterType {
private Boolean myMissing;