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

com.silanis.esl.api.model.UsageReport 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.*;
import java.util.List;
import java.util.ArrayList;
import com.silanis.esl.api.util.JsonDateDeserializer;
import com.silanis.esl.api.util.JsonDateSerializer;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.silanis.esl.api.util.SchemaSanitizer;
@JsonIgnoreProperties(ignoreUnknown=true)
public class UsageReport extends Report
      implements java.io.Serializable
{
    
    // Dirty Flag Constants
    @JsonIgnore
    public static final String FIELD_FROM = "from";
    @JsonIgnore
    public static final String FIELD_SENDERS = "senders";
    @JsonIgnore
    public static final String FIELD_TO = "to";
    
    // Empty Constructor
    public UsageReport ( ) {}
    
    // Fields
    protected List _senders = new ArrayList();
    
    // Accessors
        
    
    @JsonDeserialize(using = JsonDateDeserializer.class)
    @Override
    public UsageReport setFrom( java.util.Date value ){
        super.setFrom(value);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public UsageReport safeSetFrom( java.util.Date value ){
        if ( value != null ) { this.setFrom( value ); }
        return this;
    }
    
        
    
    public UsageReport setSenders( List value ){
        SchemaSanitizer.throwOnNull(FIELD_SENDERS,value);
        // TODO With proper compare
        // if ( this._senders == value ) return this;
        this._senders = value;
        setDirty(FIELD_SENDERS);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public UsageReport safeSetSenders( List value ){
        if ( value != null ) { this.setSenders( value ); }
        return this;
    }
    public List getSenders(){
        return _senders;
    }
    // List adder
    public UsageReport addSender( SenderUsageReport value ){
        if (value == null) { throw new IllegalArgumentException("Argument cannot be null"); }
        this._senders.add(value);
        setDirty(FIELD_SENDERS);
        return this;
    }
    
        
    
    @JsonDeserialize(using = JsonDateDeserializer.class)
    @Override
    public UsageReport setTo( java.util.Date value ){
        super.setTo(value);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public UsageReport safeSetTo( java.util.Date value ){
        if ( value != null ) { this.setTo( value ); }
        return this;
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy