MultiValuedAttribute.java 1.1 KB
Newer Older
MaxKey单点登录官方's avatar
extends  
MaxKey单点登录官方 已提交
1 2 3 4
package org.maxkey.identity.scim.resources;

import java.io.Serializable;

MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
5 6
import com.fasterxml.jackson.annotation.JsonProperty;

MaxKey单点登录官方's avatar
extends  
MaxKey单点登录官方 已提交
7
public class MultiValuedAttribute implements Serializable {
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
8
    
MaxKey单点登录官方's avatar
extends  
MaxKey单点登录官方 已提交
9
    private static final long serialVersionUID = 6878912593878245947L;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
10
    
MaxKey单点登录官方's avatar
extends  
MaxKey单点登录官方 已提交
11 12 13
    String value;
    String display;
    boolean primary;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
14
    @JsonProperty("$ref")
MaxKey单点登录官方's avatar
extends  
MaxKey单点登录官方 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    String reference;
    String type;
      
    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }
    public String getDisplay() {
        return display;
    }
    public void setDisplay(String display) {
        this.display = display;
    }
    public boolean isPrimary() {
        return primary;
    }
    public void setPrimary(boolean primary) {
        this.primary = primary;
    }
    public String getReference() {
        return reference;
    }
    public void setReference(String reference) {
        this.reference = reference;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    
}