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

org.apache.olingo.commons.api.data.AbstractODataObject Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF 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.apache.olingo.commons.api.data;

import java.net.URI;

/**
 * Abstract OData object with basic values (id, baseURI, title).
 */
public abstract class AbstractODataObject extends Annotatable {

  private URI baseURI;
  private URI id;
  private String title;

  /**
   * Gets base URI.
   * @return base URI
   */
  public URI getBaseURI() {
    return baseURI;
  }

  /**
   * Sets base URI.
   * @param baseURI new base URI
   */
  public void setBaseURI(final URI baseURI) {
    this.baseURI = baseURI;
  }

  /**
   * Gets ID.
   * @return ID.
   */
  public URI getId() {
    return id;
  }

  /**
   * Sets ID.
   * @param id new ID value
   */
  public void setId(final URI id) {
    this.id = id;
  }

  /**
   * Gets title.
   * @return title
   */
  public String getTitle() {
    return title;
  }

  /**
   * Sets property with given key to given value.
   * @param key key of property
   * @param value new value for property
   */
  public void setCommonProperty(final String key, final String value) {
    if ("id".equals(key)) {
      id = URI.create(value);
    } else if ("title".equals(key)) {
      title = value;
    }
  }

  @Override
  public boolean equals(final Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }

    final AbstractODataObject other = (AbstractODataObject) o;
    return getAnnotations().equals(other.getAnnotations())
        && (baseURI == null ? other.baseURI == null : baseURI.equals(other.baseURI))
        && (id == null ? other.id == null : id.equals(other.id))
        && (title == null ? other.title == null : title.equals(other.title));
  }

  @Override
  public int hashCode() {
    int result = getAnnotations().hashCode();
    result = 31 * result + (baseURI == null ? 0 : baseURI.hashCode());
    result = 31 * result + (id == null ? 0 : id.hashCode());
    result = 31 * result + (title == null ? 0 : title.hashCode());
    return result;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy