Skip to content

Commit e0bc7dc

Browse files
committed
Combine all mediatypes under a parent package
1 parent 2882e82 commit e0bc7dc

File tree

114 files changed

+145
-145
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+145
-145
lines changed

src/main/java/org/springframework/hateoas/LinkDiscoverers.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.springframework.hateoas;
1717

18+
import org.springframework.hateoas.mediatype.MediaTypes;
1819
import org.springframework.http.MediaType;
1920
import org.springframework.plugin.core.PluginRegistry;
2021
import org.springframework.util.Assert;

src/main/java/org/springframework/hateoas/client/Traverson.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
import org.springframework.hateoas.Link;
3636
import org.springframework.hateoas.LinkDiscoverer;
3737
import org.springframework.hateoas.LinkDiscoverers;
38-
import org.springframework.hateoas.MediaTypes;
38+
import org.springframework.hateoas.mediatype.MediaTypes;
3939
import org.springframework.hateoas.UriTemplate;
4040
import org.springframework.hateoas.client.Rels.Rel;
41-
import org.springframework.hateoas.hal.HalLinkDiscoverer;
42-
import org.springframework.hateoas.hal.Jackson2HalModule;
41+
import org.springframework.hateoas.mediatype.hal.HalLinkDiscoverer;
42+
import org.springframework.hateoas.mediatype.hal.Jackson2HalModule;
4343
import org.springframework.http.HttpEntity;
4444
import org.springframework.http.HttpHeaders;
4545
import org.springframework.http.MediaType;

src/main/java/org/springframework/hateoas/config/ConverterRegisteringBeanPostProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.springframework.beans.factory.ObjectFactory;
2222
import org.springframework.beans.factory.config.BeanPostProcessor;
2323
import org.springframework.context.ApplicationContext;
24-
import org.springframework.hateoas.hal.Jackson2HalModule;
24+
import org.springframework.hateoas.mediatype.hal.Jackson2HalModule;
2525
import org.springframework.web.client.RestTemplate;
2626

2727
import com.fasterxml.jackson.databind.ObjectMapper;

src/main/java/org/springframework/hateoas/config/ConverterRegisteringWebMvcConfigurer.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
package org.springframework.hateoas.config;
1717

18-
import static org.springframework.hateoas.MediaTypes.*;
18+
import static org.springframework.hateoas.mediatype.MediaTypes.*;
1919

2020
import lombok.RequiredArgsConstructor;
2121

@@ -31,15 +31,15 @@
3131
import org.springframework.context.support.MessageSourceAccessor;
3232
import org.springframework.hateoas.RelProvider;
3333
import org.springframework.hateoas.ResourceSupport;
34-
import org.springframework.hateoas.collectionjson.Jackson2CollectionJsonModule;
34+
import org.springframework.hateoas.mediatype.collectionjson.Jackson2CollectionJsonModule;
3535
import org.springframework.hateoas.config.EnableHypermediaSupport.HypermediaType;
3636
import org.springframework.hateoas.core.DelegatingRelProvider;
37-
import org.springframework.hateoas.hal.CurieProvider;
38-
import org.springframework.hateoas.hal.HalConfiguration;
39-
import org.springframework.hateoas.hal.Jackson2HalModule;
40-
import org.springframework.hateoas.hal.Jackson2HalModule.HalHandlerInstantiator;
41-
import org.springframework.hateoas.hal.forms.HalFormsConfiguration;
42-
import org.springframework.hateoas.hal.forms.Jackson2HalFormsModule;
37+
import org.springframework.hateoas.mediatype.hal.CurieProvider;
38+
import org.springframework.hateoas.mediatype.hal.HalConfiguration;
39+
import org.springframework.hateoas.mediatype.hal.Jackson2HalModule;
40+
import org.springframework.hateoas.mediatype.hal.Jackson2HalModule.HalHandlerInstantiator;
41+
import org.springframework.hateoas.mediatype.halforms.HalFormsConfiguration;
42+
import org.springframework.hateoas.mediatype.halforms.Jackson2HalFormsModule;
4343
import org.springframework.hateoas.mvc.TypeConstrainedMappingJackson2HttpMessageConverter;
4444
import org.springframework.http.converter.HttpMessageConverter;
4545
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;

src/main/java/org/springframework/hateoas/config/HypermediaSupportBeanDefinitionRegistrar.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
import org.springframework.core.type.AnnotationMetadata;
3434
import org.springframework.hateoas.EntityLinks;
3535
import org.springframework.hateoas.LinkDiscoverer;
36-
import org.springframework.hateoas.collectionjson.CollectionJsonLinkDiscoverer;
36+
import org.springframework.hateoas.mediatype.collectionjson.CollectionJsonLinkDiscoverer;
3737
import org.springframework.hateoas.config.EnableHypermediaSupport.HypermediaType;
38-
import org.springframework.hateoas.hal.HalLinkDiscoverer;
39-
import org.springframework.hateoas.hal.forms.HalFormsLinkDiscoverer;
38+
import org.springframework.hateoas.mediatype.hal.HalLinkDiscoverer;
39+
import org.springframework.hateoas.mediatype.halforms.HalFormsLinkDiscoverer;
4040
import org.springframework.util.ClassUtils;
4141

4242
/**

src/main/java/org/springframework/hateoas/core/JsonPathLinkDiscoverer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@
2929

3030
import org.springframework.hateoas.Link;
3131
import org.springframework.hateoas.LinkDiscoverer;
32-
import org.springframework.hateoas.MediaTypes;
32+
import org.springframework.hateoas.mediatype.MediaTypes;
3333
import org.springframework.http.MediaType;
3434
import org.springframework.util.Assert;
3535
import org.springframework.util.ReflectionUtils;
36-
import org.springframework.util.StringUtils;
3736

3837
import com.jayway.jsonpath.InvalidPathException;
3938
import com.jayway.jsonpath.JsonPath;

src/main/java/org/springframework/hateoas/MediaTypes.java renamed to src/main/java/org/springframework/hateoas/mediatype/MediaTypes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas;
16+
package org.springframework.hateoas.mediatype;
1717

1818
import org.springframework.http.MediaType;
1919

src/main/java/org/springframework/hateoas/alps/Alps.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/Alps.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.alps;
16+
package org.springframework.hateoas.mediatype.alps;
1717

1818
import lombok.Builder;
1919
import lombok.Value;
2020

2121
import java.util.List;
2222

23-
import org.springframework.hateoas.alps.Descriptor.DescriptorBuilder;
24-
import org.springframework.hateoas.alps.Doc.DocBuilder;
25-
import org.springframework.hateoas.alps.Ext.ExtBuilder;
23+
import org.springframework.hateoas.mediatype.alps.Descriptor.DescriptorBuilder;
24+
import org.springframework.hateoas.mediatype.alps.Doc.DocBuilder;
25+
import org.springframework.hateoas.mediatype.alps.Ext.ExtBuilder;
2626

2727
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
2828

src/main/java/org/springframework/hateoas/alps/AlpsLinkDiscoverer.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/AlpsLinkDiscoverer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.alps;
16+
package org.springframework.hateoas.mediatype.alps;
1717

1818
import org.springframework.hateoas.LinkDiscoverer;
19-
import org.springframework.hateoas.MediaTypes;
19+
import org.springframework.hateoas.mediatype.MediaTypes;
2020
import org.springframework.hateoas.core.JsonPathLinkDiscoverer;
2121

2222
/**

src/main/java/org/springframework/hateoas/alps/Descriptor.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/Descriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.alps;
16+
package org.springframework.hateoas.mediatype.alps;
1717

1818
import lombok.Builder;
1919
import lombok.Value;

src/main/java/org/springframework/hateoas/alps/Doc.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/Doc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.alps;
16+
package org.springframework.hateoas.mediatype.alps;
1717

1818
import lombok.AllArgsConstructor;
1919
import lombok.Builder;

src/main/java/org/springframework/hateoas/alps/Ext.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/Ext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.alps;
16+
package org.springframework.hateoas.mediatype.alps;
1717

1818
import lombok.Builder;
1919
import lombok.Value;

src/main/java/org/springframework/hateoas/alps/Format.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/Format.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.alps;
16+
package org.springframework.hateoas.mediatype.alps;
1717

1818
import java.util.Locale;
1919

src/main/java/org/springframework/hateoas/alps/Type.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/Type.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.alps;
16+
package org.springframework.hateoas.mediatype.alps;
1717

1818
import java.util.Locale;
1919

src/main/java/org/springframework/hateoas/alps/package-info.java renamed to src/main/java/org/springframework/hateoas/mediatype/alps/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
*
44
* @see https://alps.io
55
*/
6-
package org.springframework.hateoas.alps;
6+
package org.springframework.hateoas.mediatype.alps;
77

src/main/java/org/springframework/hateoas/collectionjson/CollectionJson.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJson.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.AccessLevel;
1919
import lombok.Value;

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonAffordanceModel.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonAffordanceModel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.Getter;
1919

@@ -26,7 +26,7 @@
2626
import org.springframework.core.ResolvableType;
2727
import org.springframework.hateoas.Affordance;
2828
import org.springframework.hateoas.AffordanceModel;
29-
import org.springframework.hateoas.MediaTypes;
29+
import org.springframework.hateoas.mediatype.MediaTypes;
3030
import org.springframework.hateoas.QueryParameter;
3131
import org.springframework.hateoas.support.PropertyUtils;
3232
import org.springframework.http.HttpMethod;

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonAffordanceModelFactory.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonAffordanceModelFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.Getter;
1919

2020
import org.springframework.hateoas.Affordance;
2121
import org.springframework.hateoas.AffordanceModel;
22-
import org.springframework.hateoas.MediaTypes;
22+
import org.springframework.hateoas.mediatype.MediaTypes;
2323
import org.springframework.hateoas.core.AffordanceModelFactory;
2424
import org.springframework.hateoas.core.DummyInvocationUtils.MethodInvocation;
2525
import org.springframework.http.MediaType;

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonData.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.AccessLevel;
1919
import lombok.Value;

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonDocument.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonDocument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.AccessLevel;
1919
import lombok.RequiredArgsConstructor;

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonError.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.AccessLevel;
1919
import lombok.Value;

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonItem.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.AccessLevel;
1919
import lombok.Getter;

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonLinkDiscoverer.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonLinkDiscoverer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import java.io.InputStream;
1919
import java.util.List;
@@ -22,7 +22,7 @@
2222

2323
import org.springframework.hateoas.Link;
2424
import org.springframework.hateoas.LinkDiscoverer;
25-
import org.springframework.hateoas.MediaTypes;
25+
import org.springframework.hateoas.mediatype.MediaTypes;
2626
import org.springframework.hateoas.core.JsonPathLinkDiscoverer;
2727

2828
/**

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonQuery.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import static com.fasterxml.jackson.annotation.JsonInclude.*;
1919

src/main/java/org/springframework/hateoas/collectionjson/CollectionJsonTemplate.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/CollectionJsonTemplate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import lombok.Value;
1919
import lombok.experimental.Wither;

src/main/java/org/springframework/hateoas/collectionjson/Jackson2CollectionJsonModule.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/Jackson2CollectionJsonModule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

1818
import java.io.IOException;
1919
import java.util.ArrayList;
@@ -30,7 +30,7 @@
3030
import org.springframework.context.support.MessageSourceAccessor;
3131
import org.springframework.hateoas.Affordance;
3232
import org.springframework.hateoas.Link;
33-
import org.springframework.hateoas.MediaTypes;
33+
import org.springframework.hateoas.mediatype.MediaTypes;
3434
import org.springframework.hateoas.PagedResources;
3535
import org.springframework.hateoas.Resource;
3636
import org.springframework.hateoas.ResourceSupport;

src/main/java/org/springframework/hateoas/collectionjson/PagedResourcesMixin.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/PagedResourcesMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

18-
import static org.springframework.hateoas.collectionjson.Jackson2CollectionJsonModule.*;
18+
import static org.springframework.hateoas.mediatype.collectionjson.Jackson2CollectionJsonModule.*;
1919

2020
import org.springframework.hateoas.PagedResources;
2121

src/main/java/org/springframework/hateoas/collectionjson/ResourceMixin.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/ResourceMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

18-
import static org.springframework.hateoas.collectionjson.Jackson2CollectionJsonModule.*;
18+
import static org.springframework.hateoas.mediatype.collectionjson.Jackson2CollectionJsonModule.*;
1919

2020
import org.springframework.hateoas.Resource;
2121

src/main/java/org/springframework/hateoas/collectionjson/ResourceSupportMixin.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/ResourceSupportMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

18-
import static org.springframework.hateoas.collectionjson.Jackson2CollectionJsonModule.*;
18+
import static org.springframework.hateoas.mediatype.collectionjson.Jackson2CollectionJsonModule.*;
1919

2020
import java.util.List;
2121

src/main/java/org/springframework/hateoas/collectionjson/ResourcesMixin.java renamed to src/main/java/org/springframework/hateoas/mediatype/collectionjson/ResourcesMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.collectionjson;
16+
package org.springframework.hateoas.mediatype.collectionjson;
1717

18-
import static org.springframework.hateoas.collectionjson.Jackson2CollectionJsonModule.*;
18+
import static org.springframework.hateoas.mediatype.collectionjson.Jackson2CollectionJsonModule.*;
1919

2020
import org.springframework.hateoas.Resources;
2121

src/main/java/org/springframework/hateoas/hal/CurieProvider.java renamed to src/main/java/org/springframework/hateoas/mediatype/hal/CurieProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.hal;
16+
package org.springframework.hateoas.mediatype.hal;
1717

1818
import java.util.Collection;
1919

src/main/java/org/springframework/hateoas/hal/DefaultCurieProvider.java renamed to src/main/java/org/springframework/hateoas/mediatype/hal/DefaultCurieProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.hal;
16+
package org.springframework.hateoas.mediatype.hal;
1717

1818
import lombok.Getter;
1919

src/main/java/org/springframework/hateoas/hal/HalConfiguration.java renamed to src/main/java/org/springframework/hateoas/mediatype/hal/HalConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.hateoas.hal;
16+
package org.springframework.hateoas.mediatype.hal;
1717

1818
import lombok.AccessLevel;
1919
import lombok.AllArgsConstructor;

0 commit comments

Comments
 (0)