edu.internet2.middleware.grouperClientExt.xmpp.GrouperClientXmppSubject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
/**
* Copyright 2014 Internet2
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package edu.internet2.middleware.grouperClientExt.xmpp;
import java.util.HashMap;
import java.util.Map;
import edu.internet2.middleware.grouperClient.util.GrouperClientUtils;
import edu.internet2.middleware.grouperClient.ws.beans.WsSubject;
/**
* subject from grouper event
* @author mchyzer
*/
public class GrouperClientXmppSubject {
/**
*
*/
public GrouperClientXmppSubject() {
//empty
}
/**
* @param esbEvent
*
*/
public GrouperClientXmppSubject(EsbEvent esbEvent) {
this.subjectId = esbEvent.getSubjectId();
this.sourceId = esbEvent.getSourceId();
this.name = esbEvent.subjectAttribute("name");
this.description = esbEvent.subjectAttribute("description");
for (String[] row : GrouperClientUtils.nonNull(esbEvent.getSubjectAttributes(), String[].class)) {
this.attribute.put(row[0], row[1]);
}
}
/** subject id */
private String subjectId;
/** source id */
private String sourceId;
/** name */
private String name;
/** description */
private String description;
/** attributes */
private Map attribute = new HashMap();
/**
* name
* @return name
*/
public String getName() {
return this.name;
}
/**
* name
* @param name1
*/
public void setName(String name1) {
this.name = name1;
}
/**
* description
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* description
* @param description1
*/
public void setDescription(String description1) {
this.description = description1;
}
/**
* convert from WS subject to this subject
* @param wsSubject
* @param subjectAttributeNames
*/
public GrouperClientXmppSubject(WsSubject wsSubject, String[] subjectAttributeNames) {
this.subjectId = wsSubject.getId();
this.sourceId = wsSubject.getSourceId();
this.name = wsSubject.getName();
for (int i=0;i getAttribute() {
return this.attribute;
}
/**
* attributes
* @param attribute1
*/
public void setAttribute(Map attribute1) {
this.attribute = attribute1;
}
/**
* @see Object#equals(Object)
*/
@Override
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (!(other instanceof GrouperClientXmppSubject)) {
return false;
}
GrouperClientXmppSubject otherSubject = (GrouperClientXmppSubject)other;
return GrouperClientUtils.equals(this.sourceId, otherSubject.sourceId) && GrouperClientUtils.equals(this.subjectId, otherSubject.subjectId);
}
/**
* @see Object#hashCode()
*/
@Override
public int hashCode() {
return (this.subjectId + this.sourceId).hashCode();
}
}