From 98a0d5a07a73e7b0b55d9f5b37994584013d116e Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 28 Aug 2015 18:19:16 -0400 Subject: [PATCH] Delete old deprecated classes --- .../uhn/fhir/rest/gclient/CompositeParam.java | 36 ------------------- .../ca/uhn/fhir/rest/gclient/DateParam.java | 36 ------------------- .../ca/uhn/fhir/rest/gclient/NumberParam.java | 36 ------------------- .../uhn/fhir/rest/gclient/QuantityParam.java | 36 ------------------- .../uhn/fhir/rest/gclient/ReferenceParam.java | 36 ------------------- .../ca/uhn/fhir/rest/gclient/StringParam.java | 36 ------------------- .../ca/uhn/fhir/rest/gclient/TokenParam.java | 36 ------------------- 7 files changed, 252 deletions(-) delete mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeParam.java delete mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateParam.java delete mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberParam.java delete mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityParam.java delete mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceParam.java delete mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringParam.java delete mode 100644 hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenParam.java diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeParam.java deleted file mode 100644 index b5f0f8607c2..00000000000 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/CompositeParam.java +++ /dev/null @@ -1,36 +0,0 @@ -package ca.uhn.fhir.rest.gclient; - -/* - * #%L - * HAPI FHIR - Core Library - * %% - * Copyright (C) 2014 - 2015 University Health Network - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - - -/** - * @deprecated Use {@link CompositeClientParam} instead. That class is identical to this one but was renamed to reduce - * confusing duplicate names in the API. This class will be removed in a future release. - */ -@Deprecated -public class CompositeParam extends CompositeClientParam { - - public CompositeParam(String theParamName) { - super(theParamName); - } - - -} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateParam.java deleted file mode 100644 index 2623c4493fc..00000000000 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/DateParam.java +++ /dev/null @@ -1,36 +0,0 @@ -package ca.uhn.fhir.rest.gclient; - -/* - * #%L - * HAPI FHIR - Core Library - * %% - * Copyright (C) 2014 - 2015 University Health Network - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - - -/** - * @deprecated Use {@link DateClientParam} instead. That class is identical to this one but was renamed to reduct - * confusing duplicate names in the API. This class will be removed in a future release. - */ -@Deprecated -public class DateParam extends DateClientParam { - - public DateParam(String theParamName) { - super(theParamName); - } - - -} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberParam.java deleted file mode 100644 index 32edde136f4..00000000000 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/NumberParam.java +++ /dev/null @@ -1,36 +0,0 @@ -package ca.uhn.fhir.rest.gclient; - -/* - * #%L - * HAPI FHIR - Core Library - * %% - * Copyright (C) 2014 - 2015 University Health Network - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - - -/** - * @deprecated Use {@link NumberClientParam} instead. That class is identical to this one but was renamed to reduct - * confusing duplicate names in the API. This class will be removed in a future release. - */ -@Deprecated -public class NumberParam extends NumberClientParam { - - public NumberParam(String theParamName) { - super(theParamName); - } - - -} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityParam.java deleted file mode 100644 index 05920ac81e9..00000000000 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/QuantityParam.java +++ /dev/null @@ -1,36 +0,0 @@ -package ca.uhn.fhir.rest.gclient; - -/* - * #%L - * HAPI FHIR - Core Library - * %% - * Copyright (C) 2014 - 2015 University Health Network - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - - -/** - * @deprecated Use {@link QuantityClientParam} instead. That class is identical to this one but was renamed to reduct - * confusing duplicate names in the API. This class will be removed in a future release. - */ -@Deprecated -public class QuantityParam extends QuantityClientParam { - - public QuantityParam(String theParamName) { - super(theParamName); - } - - -} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceParam.java deleted file mode 100644 index e0f53b377a6..00000000000 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/ReferenceParam.java +++ /dev/null @@ -1,36 +0,0 @@ -package ca.uhn.fhir.rest.gclient; - -/* - * #%L - * HAPI FHIR - Core Library - * %% - * Copyright (C) 2014 - 2015 University Health Network - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - - -/** - * @deprecated Use {@link ReferenceClientParam} instead. That class is identical to this one but was renamed to reduct - * confusing duplicate names in the API. This class will be removed in a future release. - */ -@Deprecated -public class ReferenceParam extends ReferenceClientParam { - - public ReferenceParam(String theParamName) { - super(theParamName); - } - - -} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringParam.java deleted file mode 100644 index 81261ff54ce..00000000000 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/StringParam.java +++ /dev/null @@ -1,36 +0,0 @@ -package ca.uhn.fhir.rest.gclient; - -/* - * #%L - * HAPI FHIR - Core Library - * %% - * Copyright (C) 2014 - 2015 University Health Network - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - - -/** - * @deprecated Use {@link StringClientParam} instead. That class is identical to this one but was renamed to reduct - * confusing duplicate names in the API. This class will be removed in a future release. - */ -@Deprecated -public class StringParam extends StringClientParam { - - public StringParam(String theParamName) { - super(theParamName); - } - - -} diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenParam.java deleted file mode 100644 index 994341b8ee3..00000000000 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/TokenParam.java +++ /dev/null @@ -1,36 +0,0 @@ -package ca.uhn.fhir.rest.gclient; - -/* - * #%L - * HAPI FHIR - Core Library - * %% - * Copyright (C) 2014 - 2015 University Health Network - * %% - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * #L% - */ - - -/** - * @deprecated Use {@link TokenClientParam} instead. That class is identical to this one but was renamed to reduct - * confusing duplicate names in the API. This class will be removed in a future release. - */ -@Deprecated -public class TokenParam extends TokenClientParam { - - public TokenParam(String theParamName) { - super(theParamName); - } - - -}