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

io.atlasmap.v2.Mappings Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
package io.atlasmap.v2;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

public class Mappings implements Serializable {

    private static final long serialVersionUID = 1L;

    protected List mapping;

    /**
     * Gets the value of the mapping property.
     * 
     * 

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the mapping property. * *

* For example, to add a new item, do as follows: *

     *    getMapping().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BaseMapping } * * @return A list of {@link BaseMapping} */ public List getMapping() { if (mapping == null) { mapping = new ArrayList(); } return this.mapping; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy