edu.internet2.middleware.grouper.ws.soap_v2_0.WsStem 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_0;
/**
* Result for finding a stem
*
* @author mchyzer
*
*/
public class WsStem {
/** extension is the right part of the name */
private String extension;
/** display extension is the right part of the display name */
private String displayExtension;
/**
* no arg constructor
*/
public WsStem() {
// blank
}
/**
* friendly description of this stem
*/
private String description;
/**
* friendly extensions of stem and parent stems
*/
private String displayName;
/**
* Full name of the stem (all extensions of parent stems, separated by
* colons, and the extention of this stem
*/
private String name;
/**
* universally unique identifier of this stem
*/
private String uuid;
/**
* friendly description of this stem
*
* @return the description
*/
public String getDescription() {
return this.description;
}
/**
* friendly description of this stem
*
* @param description1
* the description to set
*/
public void setDescription(String description1) {
this.description = description1;
}
/**
* friendly extensions of stem and parent stems
*
* @return the displayName
*/
public String getDisplayName() {
return this.displayName;
}
/**
* friendly extensions of stem and parent stems
*
* @param displayName1
* the displayName to set
*/
public void setDisplayName(String displayName1) {
this.displayName = displayName1;
}
/**
* Full name of the stem (all extensions of parent stems, separated by
* colons, and the extention of this stem
*
* @return the name
*/
public String getName() {
return this.name;
}
/**
* Full name of the stem (all extensions of parent stems, separated by
* colons, and the extention of this stem
*
* @param name1
* the name to set
*/
public void setName(String name1) {
this.name = name1;
}
/**
* universally unique identifier of this stem
*
* @return the uuid
*/
public String getUuid() {
return this.uuid;
}
/**
* universally unique identifier of this stem
*
* @param uuid1
* the uuid to set
*/
public void setUuid(String uuid1) {
this.uuid = uuid1;
}
/**
* @return the extension
*/
public String getExtension() {
return this.extension;
}
/**
* @param extension1 the extension to set
*/
public void setExtension(String extension1) {
this.extension = extension1;
}
/**
* @return the displayExtension
*/
public String getDisplayExtension() {
return this.displayExtension;
}
/**
* @param displayExtension1 the displayExtension to set
*/
public void setDisplayExtension(String displayExtension1) {
this.displayExtension = displayExtension1;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy