org.apache.olingo.odata2.api.edm.provider.NavigationProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-v2-lib Show documentation
Show all versions of odata-v2-lib Show documentation
Repackaged OData V2 Olingo Library
/*******************************************************************************
* 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.odata2.api.edm.provider;
import java.util.List;
import org.apache.olingo.odata2.api.edm.FullQualifiedName;
/**
* Objects of this Class represent a navigation property
*
*/
public class NavigationProperty {
private String name;
private FullQualifiedName relationship;
private String fromRole;
private String toRole;
private Documentation documentation;
private Mapping mapping;
private List annotationAttributes;
private List annotationElements;
/**
* @return String name of this navigation property
*/
public String getName() {
return name;
}
/**
* @return {@link FullQualifiedName} of the relationship
*/
public FullQualifiedName getRelationship() {
return relationship;
}
/**
* @return String name of the role this navigation is comming from
*/
public String getFromRole() {
return fromRole;
}
/**
* @return String name of the role this navigation is going to
*/
public String getToRole() {
return toRole;
}
/**
* @return {@link Mapping} of this navigation property
*/
public Mapping getMapping() {
return mapping;
}
/**
* @return {@link Documentation} documentation
*/
public Documentation getDocumentation() {
return documentation;
}
/**
* @return List of {@link AnnotationAttribute} annotation attributes
*/
public List getAnnotationAttributes() {
return annotationAttributes;
}
/**
* @return List of {@link AnnotationElement} annotation elements
*/
public List getAnnotationElements() {
return annotationElements;
}
/**
* Sets the name of this {@link NavigationProperty}
* @param name
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setName(final String name) {
this.name = name;
return this;
}
/**
* Sets the {@link FullQualifiedName} for the relationship of this {@link NavigationProperty}
* @param relationship
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setRelationship(final FullQualifiedName relationship) {
this.relationship = relationship;
return this;
}
/**
* Sets the role this {@link NavigationProperty} is comming from
* @param fromRole
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setFromRole(final String fromRole) {
this.fromRole = fromRole;
return this;
}
/**
* Sets the role this {@link NavigationProperty} is going to
* @param toRole
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setToRole(final String toRole) {
this.toRole = toRole;
return this;
}
/**
* Sets the {@link Mapping} for this {@link NavigationProperty}
* @param mapping
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setMapping(final Mapping mapping) {
this.mapping = mapping;
return this;
}
/**
* Sets the {@link Documentation} for this {@link NavigationProperty}
* @param documentation
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setDocumentation(final Documentation documentation) {
this.documentation = documentation;
return this;
}
/**
* Sets the List of {@link AnnotationAttribute} for this {@link NavigationProperty}
* @param annotationAttributes
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setAnnotationAttributes(final List annotationAttributes) {
this.annotationAttributes = annotationAttributes;
return this;
}
/**
* Sets the List of {@link AnnotationElement} for this {@link NavigationProperty}
* @param annotationElements
* @return {@link NavigationProperty} for method chaining
*/
public NavigationProperty setAnnotationElements(final List annotationElements) {
this.annotationElements = annotationElements;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy