edu.internet2.middleware.grouper.ws.soap_v2_5.WsAttributeDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-ws Show documentation
Show all versions of grouper-ws Show documentation
Internet2 Groups Management WS Core
/*******************************************************************************
* Copyright 2012 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.grouper.ws.soap_v2_5;
/**
* Result of one attribute def name being retrieved. The number of
* attribute def names will equal the number of attribute def names related to the result
*
* @author mchyzer
*/
public class WsAttributeDef {
/**
* integer ID for object
*/
private String idIndex;
/**
* integer ID for object
* @return the id
*/
public String getIdIndex() {
return this.idIndex;
}
/**
* integer ID for object
* @param idIndex1
*/
public void setIdIndex(String idIndex1) {
this.idIndex = idIndex1;
}
/** extension of attributeDef, the part to the right of last colon in name */
private String extension;
/**
* friendly description of this attributeDef
*/
private String description;
/**
* Full name of the attributeDef (all extensions of parent stems, separated by colons, and the extention of this attributeDef
*/
private String name;
/**
* universally unique identifier of this attributeDef
*/
private String uuid;
/**
* type of attribute def, from enum AttributeDefType, e.g. attr, domain, type, limit, perm
*/
private String attributeDefType;
/**
* T of F for if can be assigned multiple times to one object
*/
private String multiAssignable;
/**
* T or F for if multiple values can be assigned to the attribute assignment
*/
private String multiValued;
/**
* what type of value on assignments: AttributeDefValueType: e.g. integer, timestamp, string, floating, marker, memberId
*/
private String valueType;
/**
* can be assigned to these types: ATTRIBUTE_DEF, ATTRIBUTE_DEF_ASSIGNMENT, EFFECTIVE_MEMBERSHIP,
* EFFECTIVE_MEMBERSHIP_ASSIGNMENT, GROUP, GROUP_ASSIGNMENT, IMMEDIATE_MEMBERSHIP,
* IMMEDIATE_MEMBERSHIP_ASSIGNMENT, MEMBER, MEMBER_ASSIGNMENT, STEM, STEM_ASSIGNMENT
*/
private String[] assignableTos;
/**
* type of attribute def, from enum AttributeDefType, e.g. attr, domain, type, limit, perm
* @return the type
*/
public String getAttributeDefType() {
return this.attributeDefType;
}
/**
* type of attribute def, from enum AttributeDefType, e.g. attr, domain, type, limit, perm
* @param attributeDefType1
*/
public void setAttributeDefType(String attributeDefType1) {
this.attributeDefType = attributeDefType1;
}
/**
* T of F for if can be assigned multiple times to one object
* @return if multi assignable
*/
public String getMultiAssignable() {
return this.multiAssignable;
}
/**
* T of F for if can be assigned multiple times to one object
* @param multiAssignable1
*/
public void setMultiAssignable(String multiAssignable1) {
this.multiAssignable = multiAssignable1;
}
/**
* T or F, if has values, if can assign multiple values to one assignment
* @return T or F, if has values, if can assign multiple values to one assignment
*/
public String getMultiValued() {
return this.multiValued;
}
/**
* T or F, if has values, if can assign multiple values to one assignment
* @param multiValued1
*/
public void setMultiValued(String multiValued1) {
this.multiValued = multiValued1;
}
/**
* what type of value on assignments: AttributeDefValueType: e.g. integer, timestamp, string, floating, marker, memberId
* @return value type
*/
public String getValueType() {
return this.valueType;
}
/**
* what type of value on assignments: AttributeDefValueType: e.g. integer, timestamp, string, floating, marker, memberId
* @param valueType1
*/
public void setValueType(String valueType1) {
this.valueType = valueType1;
}
/**
* can be assigned to these types
* @return assignable tos
*/
public String[] getAssignableTos() {
return this.assignableTos;
}
/**
* can be assigned to these types
* @param assignableTos1
*/
public void setAssignableTos(String[] assignableTos1) {
this.assignableTos = assignableTos1;
}
/**
* no arg constructor
*/
public WsAttributeDef() {
//blank
}
/**
* friendly description of this attributeDef
* @return the description
*/
public String getDescription() {
return this.description;
}
/**
* Full name of the attributeDef (all extensions of parent stems, separated by colons,
* and the extention of this attributeDef
* @return the name
*/
public String getName() {
return this.name;
}
/**
* universally unique identifier of this attributeDef
* @return the uuid
*/
public String getUuid() {
return this.uuid;
}
/**
* friendly description of this attributeDef
* @param description1 the description to set
*/
public void setDescription(String description1) {
this.description = description1;
}
/**
* Full name of the attributeDef (all extensions of parent stems, separated by colons,
* and the extention of this attributeDef
* @param name1 the name to set
*/
public void setName(String name1) {
this.name = name1;
}
/**
* universally unique identifier of this attributeDef
* @param uuid1 the uuid to set
*/
public void setUuid(String uuid1) {
this.uuid = uuid1;
}
/**
* extension of attributeDef, the part to the right of last colon in name
* @return the extension
*/
public String getExtension() {
return this.extension;
}
/**
* extension of attributeDef, the part to the right of last colon in name
* @param extension1 the extension to set
*/
public void setExtension(String extension1) {
this.extension = extension1;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy