001package com.identityworksllc.iiq.common.plugin.vo;
002
003import com.fasterxml.jackson.annotation.JsonProperty;
004
005public class IdentityVO extends ObjectSummary {
006
007        private boolean correlated;
008        private boolean inactive;
009        private String localIdentifier;
010        private boolean workgroup;
011
012        @JsonProperty
013        public String getLocalIdentifier() {
014                return localIdentifier;
015        }
016
017        @JsonProperty
018        public boolean isCorrelated() {
019                return correlated;
020        }
021
022        @JsonProperty
023        public boolean isInactive() {
024                return inactive;
025        }
026
027        @JsonProperty
028        public boolean isWorkgroup() {
029                return workgroup;
030        }
031
032        public void setCorrelated(boolean correlated) {
033                this.correlated = correlated;
034        }
035
036        public void setInactive(boolean inactive) {
037                this.inactive = inactive;
038        }
039
040        public void setLocalIdentifier(String localIdentifier) {
041                this.localIdentifier = localIdentifier;
042        }
043
044        public void setWorkgroup(boolean workgroup) {
045                this.workgroup = workgroup;
046        }
047        
048}