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

org.eclipse.dirigible.components.odata.api.ODataProperty Maven / Gradle / Ivy

There is a newer version: 10.6.37
Show newest version
/*
 * Copyright (c) 2023 SAP SE or an SAP affiliate company and Eclipse Dirigible contributors
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 *
 * SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and Eclipse Dirigible contributors
 * SPDX-License-Identifier: EPL-2.0
 */
package org.eclipse.dirigible.components.odata.api;

import java.util.HashMap;
import java.util.Map;

import com.google.gson.annotations.Expose;

/**
 * The Class ODataProperty.
 */
public class ODataProperty {

    /** The name. */
	@Expose
    private String name;

    /** The column. */
	@Expose
    private String column;

    /** The nullable. */
	@Expose
    private boolean nullable;

    /** The type. */
	@Expose
    private String type;

    /**
     * 

Define list of additional annotations for Property element.

* For example: * <Property Name="SomeName" Type="Edm.String" sap:label="SomeLabel" sap:filterable="false"/> */ @Expose private Map annotationsProperty = new HashMap<>(); /** * Gets the name. * * @return the name */ public String getName() { return name; } /** * Sets the name. * * @param name the name * @return the o data property */ public ODataProperty setName(String name) { this.name = name; return this; } /** * Gets the column. * * @return the column */ public String getColumn() { return column; } /** * Sets the column. * * @param column the column * @return the o data property */ public ODataProperty setColumn(String column) { this.column = column; return this; } /** * Checks if is nullable. * * @return true, if is nullable */ public boolean isNullable() { return nullable; } /** * Sets the nullable. * * @param nullable the nullable * @return the o data property */ public ODataProperty setNullable(boolean nullable) { this.nullable = nullable; return this; } /** * Gets the type. * * @return the type */ public String getType() { return type; } /** * Sets the type. * * @param type the type * @return the o data property */ public ODataProperty setType(String type) { this.type = type; return this; } /** * Gets the annotations property. * * @return the annotations property */ public Map getAnnotationsProperty() { return annotationsProperty; } /** * Sets the annotations property. * * @param annotationsProperty the annotations property */ public void setAnnotationsProperty(Map annotationsProperty) { this.annotationsProperty = annotationsProperty; } /** * To string. * * @return the string */ @Override public String toString() { return "ODataProperty [name=" + name + ", column=" + column + ", nullable=" + nullable + ", type=" + type + ", annotationsProperty=" + annotationsProperty + "]"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy