Skip to content

Commit

Permalink
#786 - Deprecate VndErrors and VndError.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregturn committed Aug 30, 2019
1 parent 0e1fb52 commit 0acaf06
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@
* @see https://github.com/blongden/vnd.error
* @author Oliver Gierke
* @author Greg Turnquist
* @deprecated Use {@link org.springframework.hateoas.mediatype.problem.Problem} to form vendor neutral error messages.
*/
@Deprecated
public class VndErrors implements Iterable<VndErrors.VndError> {

private final List<VndError> vndErrors;
Expand Down Expand Up @@ -157,7 +159,9 @@ public boolean equals(@Nullable Object obj) {
* A single {@link VndError}.
*
* @author Oliver Gierke
* @deprecated Use {@link org.springframework.hateoas.mediatype.problem.Problem} to form vendor neutral error messages.
*/
@Deprecated
public static class VndError extends RepresentationModel<VndError> {

@JsonProperty private final String logref;
Expand Down

0 comments on commit 0acaf06

Please sign in to comment.