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

com.xcase.integrate.objects.IntegrateRuleList Maven / Gradle / Ivy

/**
 * Copyright 2016 Xcase All rights reserved.
 */
package com.xcase.integrate.objects;

import java.util.*;
import javax.xml.bind.annotation.*;

/**
 *
 * @author martinpg
 */
@XmlRootElement(name = "rules")
public class IntegrateRuleList {

    List rules;

    public List getRules() {
        return this.rules;
    }

    @XmlElement(name = "rule")
    public void setRules(List rules) {
        this.rules = rules;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy