Skip to content

Commit

Permalink
missing Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Sep 10, 2018
1 parent 080ec14 commit 635583f
Showing 1 changed file with 5 additions and 2 deletions.
Expand Up @@ -16,6 +16,7 @@

package com.evolveum.midpoint.web.page.admin.configuration;

import java.io.Serializable;
import java.util.Collection;

import javax.xml.namespace.QName;
Expand Down Expand Up @@ -359,9 +360,11 @@ private void validateObject(OperationResult result, Holder<Objectable> objectHol
}


class DebugViewOptions {
class DebugViewOptions implements Serializable {

private final static String ID_ENCRYPT = "encrypt";
private static final long serialVersionUID = 1L;

private final static String ID_ENCRYPT = "encrypt";
private final static String ID_SAVE_AS_RAW = "saveAsRaw";
private final static String ID_REEVALUATE_SEARCH_FILTERS = "reevaluateSearchFilters";
private final static String ID_VALIDATE_SCHEMA = "validateSchema";
Expand Down

0 comments on commit 635583f

Please sign in to comment.