org.picketlink.scim.model.v11.SCIMGroups Maven / Gradle / Ivy
Go to download
PicketLink REST provides a set of RESTful identity services and clients, including support for SCIM 1.1
/*
* JBoss, Home of Professional Open Source
*
* Copyright 2013 Red Hat, Inc. and/or its affiliates.
*
* 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 org.picketlink.scim.model.v11;
/**
* SCIM Group Type
*
* @author anil saldhana
* @since Apr 8, 2013
*/
public class SCIMGroups extends AbstractResource {
private String displayName;
private Members[] members;
public String getDisplayName() {
return displayName;
}
public SCIMGroups setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public Members[] getMembers() {
return members;
}
public SCIMGroups setMembers(Members[] members) {
this.members = members;
return this;
}
public static class Members {
private String value, display;
public String getValue() {
return value;
}
public Members setValue(String value) {
this.value = value;
return this;
}
public String getDisplay() {
return display;
}
public Members setDisplay(String display) {
this.display = display;
return this;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy