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

com.falkonry.helper.models.TimeObject Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.falkonry.helper.models;

/*!
 * falkonry-java-client
 * Copyright(c) 2017 Falkonry Inc
 * MIT Licensed
 */


import org.codehaus.jackson.annotate.JsonIgnoreProperties;

/**
 *
 */
@JsonIgnoreProperties(ignoreUnknown=true)
public class TimeObject {
  private String zone;
  private String format;
  private String identifier;

    /**
     *
     * @return
     */
    public String getZone() {
    return this.zone;
  }

    /**
     *
     * @param zone
     * @return
     */
    public TimeObject setZone(String zone) {
    this.zone = zone;
    return this;
  }
  
    /**
     *
     * @return
     */
    public String getFormat() {
    return this.format;
  }

    /**
     *
     * @param format
     * @return
     */
    public TimeObject setFormat(String format) {
    this.format = format;
    return this;
  }
  
    /**
     *
     * @return
     */
    public String getIdentifier() {
    return this.identifier;
  }

    /**
     *
     * @param identifier
     * @return
     */
    public TimeObject setIdentifier(String identifier) {
    this.identifier = identifier;
    return this;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy