|
| 1 | +/* |
| 2 | + * Copyright 2014-2016 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package org.springframework.data.rest.tests.shop; |
| 17 | + |
| 18 | +import lombok.Data; |
| 19 | +import lombok.EqualsAndHashCode; |
| 20 | + |
| 21 | +import java.math.BigDecimal; |
| 22 | +import java.util.Arrays; |
| 23 | +import java.util.List; |
| 24 | +import java.util.UUID; |
| 25 | + |
| 26 | +import org.springframework.data.annotation.Id; |
| 27 | +import org.springframework.data.annotation.Reference; |
| 28 | + |
| 29 | +/** |
| 30 | + * @author Oliver Gierke |
| 31 | + */ |
| 32 | +@Data |
| 33 | +@EqualsAndHashCode(of = "id") |
| 34 | +public class LineItem { |
| 35 | + |
| 36 | + private final @Id UUID id = UUID.randomUUID(); |
| 37 | + private final String description; |
| 38 | + private final BigDecimal price; |
| 39 | + |
| 40 | + private final @Reference Product product; |
| 41 | + private final @Reference List<Product> products; |
| 42 | + |
| 43 | + private final @Reference LineItemType type; |
| 44 | + private final @Reference List<LineItemType> types; |
| 45 | + |
| 46 | + public LineItem(Product product, LineItemType type) { |
| 47 | + |
| 48 | + this.price = product.getPrice(); |
| 49 | + this.description = product.getName(); |
| 50 | + |
| 51 | + this.type = type; |
| 52 | + this.types = Arrays.asList(type, type); |
| 53 | + |
| 54 | + this.product = product; |
| 55 | + this.products = Arrays.asList(product, product); |
| 56 | + } |
| 57 | +} |
0 commit comments