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

org.apache.olingo.commons.api.edm.provider.CsdlBindingTarget Maven / Gradle / Ivy

/*
 * 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.edm.provider;

import java.util.ArrayList;
import java.util.List;

import org.apache.olingo.commons.api.edm.FullQualifiedName;

/**
 * The type Csdl binding target.
 */
public abstract class CsdlBindingTarget extends CsdlAbstractEdmItem implements CsdlNamed, CsdlAnnotatable {

  /**
   * The Name.
   */
  protected String name;

  /**
   * The human readable title.
   */
  protected String title;

  /**
   * The Type.
   */
  protected FullQualifiedName type;

  /**
   * The Navigation property bindings.
   */
  protected List navigationPropertyBindings =
      new ArrayList();

  /**
   * Mapping for server use cases
   */
  protected CsdlMapping mapping;

  private List annotations = new ArrayList();

  @Override
  public String getName() {
    return name;
  }

  /**
   * Sets name.
   *
   * @param name the name
   * @return the name
   */
  public CsdlBindingTarget setName(final String name) {
    this.name = name;
    return this;
  }

  /**
   * Gets type.
   *
   * @return the type
   */
  public String getType() {
    return type.getFullQualifiedNameAsString();
  }

  /**
   * Gets type fQN.
   *
   * @return the type fQN
   */
  public FullQualifiedName getTypeFQN() {
    return type;
  }

  /**
   * Sets type.
   *
   * @param type the type
   * @return the type
   */
  public CsdlBindingTarget setType(final String type) {
    this.type = new FullQualifiedName(type);
    return this;
  }

  /**
   * Sets type.
   *
   * @param type the type
   * @return the type
   */
  public CsdlBindingTarget setType(final FullQualifiedName type) {
    this.type = type;
    return this;
  }

  /**
   * Gets navigation property bindings.
   *
   * @return the navigation property bindings
   */
  public List getNavigationPropertyBindings() {
    return navigationPropertyBindings;
  }

  /**
   * Sets navigation property bindings.
   *
   * @param navigationPropertyBindings the navigation property bindings
   * @return the navigation property bindings
   */
  public CsdlBindingTarget setNavigationPropertyBindings(
      final List navigationPropertyBindings) {
    this.navigationPropertyBindings = navigationPropertyBindings;
    return this;
  }

  @Override
  public List getAnnotations() {
    return annotations;
  }

  /**
   * Sets a list of annotations
   * @param annotations list of annotations
   * @return this instance
   */
  public CsdlBindingTarget setAnnotations(final List annotations) {
    this.annotations = annotations;
    return this;
  }

  public String getTitle() {
    return title;
  }

  /**
   * A human readable title for this instance
   * @param title
   * @return this instance
   */
  public CsdlBindingTarget setTitle(String title) {
    this.title = title;
    return this;
  }

  public CsdlMapping getMapping() {
    return mapping;
  }

  /**
   * Sets the mapping object for this binding target.
   * @param mapping
   * @return this instance
   */
  public CsdlBindingTarget setMapping(CsdlMapping mapping) {
    this.mapping = mapping;
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy