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

org.bedework.caldav.server.Organizer Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/* ********************************************************************
    Licensed to Jasig under one or more contributor license
    agreements. See the NOTICE file distributed with this work
    for additional information regarding copyright ownership.
    Jasig licenses this file to you under the Apache License,
    Version 2.0 (the "License"); you may not use this file
    except in compliance with the License. You may obtain a
    copy of the License at:
        
    http://www.apache.org/licenses/LICENSE-2.0
        
    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on
    an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied. See the License for the
    specific language governing permissions and limitations
    under the License.
*/
package org.bedework.caldav.server;

import java.io.Serializable;

/**
 * @author douglm
 *
 */
public class Organizer implements Serializable {
  /* Params fields */

  private String cn;
  private String dir;
  private String language;
  private String sentBy;

  /** The uri */
  private String organizerUri;

  /** Constructor
   *
   * @param cn
   * @param dir
   * @param language
   * @param sentBy
   * @param organizerUri
   */
  public Organizer(String cn,
                   String dir,
                   String language,
                   String sentBy,
                   String organizerUri) {
    this.cn = cn;
    this.dir = dir;
    this.language = language;
    this.sentBy = sentBy;
    this.organizerUri = organizerUri;
  }

  /** Get the cn
   *
   *  @return String     cn
   */
  public String getCn() {
    return cn;
  }

  /** Get the dir
   *
   *  @return String     dir
   */
  public String getDir() {
    return dir;
  }

  /** Get the language
   *
   *  @return String     language
   */
  public String getLanguage() {
    return language;
  }

  /** Get the sentBy
   *
   *  @return String     sentBy
   */
  public String getSentBy() {
    return sentBy;
  }

  /** Set the organizerUri
   *
   *  @param  val   String organizerUri
   */
  public void setOrganizerUri(String val) {
    organizerUri = val;
  }

  /** Get the organizerUri
   *
   *  @return String     organizerUri
   */
  public String getOrganizerUri() {
    return organizerUri;
  }

  public String toString() {
    StringBuilder sb = new StringBuilder("BwOrganizer(");

    sb.append("cn=");
    sb.append(getCn());
    sb.append(", dir=");
    sb.append(getDir());
    sb.append(", language=");
    sb.append(getLanguage());
    sb.append(", sentBy=");
    sb.append(getSentBy());
    sb.append(", organizerUri=");
    sb.append(getOrganizerUri());
    sb.append("}");

    return sb.toString();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy