All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jibx.schema.org.hr_xml.ns._2_4.HR_XML_2_4.StandAlone.PositionOpening.PositionPostingsType Maven / Gradle / Ivy


package org.jibx.schema.org.hr_xml.ns._2_4.HR_XML_2_4.StandAlone.PositionOpening;

import java.util.ArrayList;
import java.util.List;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:complexType xmlns:ns="http://ns.hr-xml.org/2006-02-28" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="PositionPostingsType">
 *   <xs:sequence>
 *     <xs:element name="PositionPosting" minOccurs="0" maxOccurs="unbounded">
 *       <!-- Reference to inner class PositionPosting -->
 *     </xs:element>
 *   </xs:sequence>
 * </xs:complexType>
 * 
*/ public class PositionPostingsType { private List positionPostingList = new ArrayList(); /** * Get the list of 'PositionPosting' element items. * * @return list */ public List getPositionPostingList() { return positionPostingList; } /** * Set the list of 'PositionPosting' element items. * * @param list */ public void setPositionPostingList(List list) { positionPostingList = list; } /** * Schema fragment(s) for this class: *
     * <xs:element xmlns:ns="http://ns.hr-xml.org/2006-02-28" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="PositionPosting" minOccurs="0" maxOccurs="unbounded">
     *   <xs:complexType>
     *     <xs:sequence>
     *       <xs:element type="ns:EntityIdType" name="Id" minOccurs="0"/>
     *       <xs:element type="xs:string" name="Title" minOccurs="0"/>
     *       <xs:element type="xs:string" name="Link" minOccurs="0"/>
     *     </xs:sequence>
     *   </xs:complexType>
     * </xs:element>
     * 
*/ public static class PositionPosting { private EntityIdType id; private String title; private String link; /** * Get the 'Id' element value. * * @return value */ public EntityIdType getId() { return id; } /** * Set the 'Id' element value. * * @param id */ public void setId(EntityIdType id) { this.id = id; } /** * Get the 'Title' element value. * * @return value */ public String getTitle() { return title; } /** * Set the 'Title' element value. * * @param title */ public void setTitle(String title) { this.title = title; } /** * Get the 'Link' element value. * * @return value */ public String getLink() { return link; } /** * Set the 'Link' element value. * * @param link */ public void setLink(String link) { this.link = link; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy