org.wso2.carbon.humantask.impl.LogicalPeopleGroupsDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: logicalPeopleGroups
* Namespace: http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803
* Java type: org.wso2.carbon.humantask.LogicalPeopleGroupsDocument
*
* Automatically generated - do not modify.
*/
package org.wso2.carbon.humantask.impl;
/**
* A document containing one logicalPeopleGroups(@http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803) element.
*
* This is a complex type.
*/
public class LogicalPeopleGroupsDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wso2.carbon.humantask.LogicalPeopleGroupsDocument
{
private static final long serialVersionUID = 1L;
public LogicalPeopleGroupsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName LOGICALPEOPLEGROUPS$0 =
new javax.xml.namespace.QName("http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803", "logicalPeopleGroups");
/**
* Gets the "logicalPeopleGroups" element
*/
public org.wso2.carbon.humantask.TLogicalPeopleGroups getLogicalPeopleGroups()
{
synchronized (monitor())
{
check_orphaned();
org.wso2.carbon.humantask.TLogicalPeopleGroups target = null;
target = (org.wso2.carbon.humantask.TLogicalPeopleGroups)get_store().find_element_user(LOGICALPEOPLEGROUPS$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "logicalPeopleGroups" element
*/
public void setLogicalPeopleGroups(org.wso2.carbon.humantask.TLogicalPeopleGroups logicalPeopleGroups)
{
synchronized (monitor())
{
check_orphaned();
org.wso2.carbon.humantask.TLogicalPeopleGroups target = null;
target = (org.wso2.carbon.humantask.TLogicalPeopleGroups)get_store().find_element_user(LOGICALPEOPLEGROUPS$0, 0);
if (target == null)
{
target = (org.wso2.carbon.humantask.TLogicalPeopleGroups)get_store().add_element_user(LOGICALPEOPLEGROUPS$0);
}
target.set(logicalPeopleGroups);
}
}
/**
* Appends and returns a new empty "logicalPeopleGroups" element
*/
public org.wso2.carbon.humantask.TLogicalPeopleGroups addNewLogicalPeopleGroups()
{
synchronized (monitor())
{
check_orphaned();
org.wso2.carbon.humantask.TLogicalPeopleGroups target = null;
target = (org.wso2.carbon.humantask.TLogicalPeopleGroups)get_store().add_element_user(LOGICALPEOPLEGROUPS$0);
return target;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy