/* * Copyright 2009, OpenIAM LLC * This file is part of the OpenIAM Identity and Access Management Suite * * OpenIAM Identity and Access Management Suite is free software: * you can redistribute it and/or modify * it under the terms of the GNU General Public License * version 3 as published by the Free Software Foundation. * * OpenIAM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * Lesser GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenIAM. If not, see <http://www.gnu.org/licenses/>. * */ /** * */ package org.openiam.provision.resp; import org.openiam.base.ws.Response; import org.openiam.base.ws.ResponseStatus; import org.openiam.provision.dto.ProvisionUser; import org.openiam.provision.type.ExtensibleAttribute; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import java.util.List; /** * Response object for a web service operation that returns a role. * @author suneet * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LookupUserResponse", propOrder = { "attrList", "principalName", "managedSysId" }) public class LookupUserResponse extends Response{ List<ExtensibleAttribute> attrList; String principalName; String managedSysId; public LookupUserResponse() { super(); } public LookupUserResponse(ResponseStatus s) { super(s); } public List<ExtensibleAttribute> getAttrList() { return attrList; } public void setAttrList(List<ExtensibleAttribute> attrList) { this.attrList = attrList; } public String getPrincipalName() { return principalName; } public void setPrincipalName(String principalName) { this.principalName = principalName; } public String getManagedSysId() { return managedSysId; } public void setManagedSysId(String managedSysId) { this.managedSysId = managedSysId; } }