Skip to content

Commit

Permalink
Make ResourceObjectTypeIdentification serializable
Browse files Browse the repository at this point in the history
This should fix failing model-impl tests.
  • Loading branch information
mederly committed May 6, 2022
1 parent 1ec837e commit 0e1f2a0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

package com.evolveum.midpoint.schema.processor;

import java.io.Serializable;
import java.util.Objects;

import org.jetbrains.annotations.NotNull;
Expand All @@ -18,7 +19,7 @@
/**
* Identifies a resource object type - by kind and intent.
*/
public class ResourceObjectTypeIdentification {
public class ResourceObjectTypeIdentification implements Serializable {

@NotNull private final ShadowKindType kind;
@NotNull private final String intent;
Expand Down

0 comments on commit 0e1f2a0

Please sign in to comment.