/* * JBoss, Home of Professional Open Source. * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ package org.teiid.olingo.service; import org.apache.olingo.commons.api.edm.EdmEntityType; import org.apache.olingo.commons.api.edm.EdmNavigationProperty; import org.apache.olingo.server.api.OData; import org.apache.olingo.server.api.uri.UriInfo; import org.teiid.core.TeiidException; import org.teiid.metadata.MetadataStore; import org.teiid.olingo.service.ODataSQLBuilder.URLParseService; import org.teiid.olingo.service.TeiidServiceHandler.UniqueNameGenerator; public class ExpandDocumentNode extends DocumentNode { private String navigationName; private boolean collection; private int top=-1; private int skip; private int columnIndex; private DocumentNode collectionContext; public static ExpandDocumentNode buildExpand(EdmNavigationProperty property, MetadataStore metadata, OData odata, UniqueNameGenerator nameGenerator, boolean useAlias, UriInfo uriInfo, URLParseService parseService, DocumentNode context) throws TeiidException { EdmEntityType type = property.getType(); ExpandDocumentNode resource = new ExpandDocumentNode(); build(resource, type, null, metadata, odata, nameGenerator, useAlias, uriInfo, parseService); resource.setNavigationName(property.getName()); resource.setCollection(property.isCollection()); resource.collectionContext = context; return resource; } public String getNavigationName() { return navigationName; } public void setNavigationName(String navigationName) { this.navigationName = navigationName; } public boolean isCollection() { return collection; } public void setCollection(boolean collection) { this.collection = collection; } public void setTop(int value) { this.top = value; } public int getTop() { return top; } public void setSkip(int value) { this.skip = value; } public int getSkip() { return skip; } public void setColumnIndex(int count) { this.columnIndex = count; } public int getColumnIndex() { return columnIndex; } public DocumentNode getCollectionContext() { return collectionContext; } }