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

com.silanis.esl.api.model.Callback Maven / Gradle / Ivy

There is a newer version: 11.59.0
Show newest version
package com.silanis.esl.api.model;
//
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.silanis.esl.api.util.SchemaSanitizer;

import java.util.ArrayList;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown=true)
public class Callback extends Model
        implements java.io.Serializable
{

    // Dirty Flag Constants
    @JsonIgnore
    public static final String FIELD_EVENTS = "events";
    @JsonIgnore
    public static final String FIELD_KEY = "key";
    @JsonIgnore
    public static final String FIELD_URL = "url";

    // Empty Constructor
    public Callback ( ) {}

    // Fields
    protected List _events = new ArrayList();
    protected String _key = "";
    protected String _url = "";

    // Accessors


    public Callback setEvents( List value ){
        SchemaSanitizer.throwOnNull(FIELD_EVENTS,value);
        // TODO With proper compare
        // if ( this._events == value ) return this;
        this._events = value;
        setDirty(FIELD_EVENTS);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public Callback safeSetEvents( List value ){
        if ( value != null ) { this.setEvents( value ); }
        return this;
    }
    public List getEvents(){
        return _events;
    }
    // List adder
    public Callback addEvent( String value ){
        if (value == null) { throw new IllegalArgumentException("Argument cannot be null"); }
        this._events.add(value);
        setDirty(FIELD_EVENTS);
        return this;
    }



    public Callback setKey( String value ){
        SchemaSanitizer.throwOnNull(FIELD_KEY,value);
        value = SchemaSanitizer.trim(value);
        // TODO With proper compare
        // if ( this._key == value ) return this;
        this._key = value;
        setDirty(FIELD_KEY);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public Callback safeSetKey( String value ){
        if ( value != null ) { this.setKey( value ); }
        return this;
    }
    public String getKey(){
        return _key;
    }



    public Callback setUrl( String value ){
        SchemaSanitizer.throwOnNull(FIELD_URL,value);
        value = SchemaSanitizer.trim(value);
        // TODO With proper compare
        // if ( this._url == value ) return this;
        this._url = value;
        setDirty(FIELD_URL);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public Callback safeSetUrl( String value ){
        if ( value != null ) { this.setUrl( value ); }
        return this;
    }
    public String getUrl(){
        return _url;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy