Make BaseOrListParam and BaseParam visible outside of the package (#1710)
This commit is contained in:
parent
8b49142b94
commit
41c715dc2d
|
@ -28,7 +28,7 @@ import ca.uhn.fhir.rest.api.QualifiedParamList;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
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<>();
|
private List<PT> myList = new ArrayList<>();
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException;
|
||||||
/**
|
/**
|
||||||
* Base class for RESTful operation parameter types
|
* Base class for RESTful operation parameter types
|
||||||
*/
|
*/
|
||||||
abstract class BaseParam implements IQueryParameterType {
|
public abstract class BaseParam implements IQueryParameterType {
|
||||||
|
|
||||||
private Boolean myMissing;
|
private Boolean myMissing;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue