Class PathInfoBuilder
- java.lang.Object
-
- de.hybris.platform.odata2webservices.odata.builders.PathInfoBuilder
-
public class PathInfoBuilder extends java.lang.ObjectA builder to createPathInfos according to specifications in the tests.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.olingo.odata2.core.PathInfoImplbuild()static PathInfoBuilderpathInfo()Creates new instance of this builder.PathInfoBuilderwithEntityKeys(java.lang.String... keys)PathInfoBuilderwithEntitySet(java.lang.String set)PathInfoBuilderwithNavigationSegment(java.lang.String segment)PathInfoBuilderwithRequestPath(java.lang.String path)PathInfoBuilderwithServiceName(java.lang.String name)
-
-
-
Method Detail
-
pathInfo
public static PathInfoBuilder pathInfo()
Creates new instance of this builder.- Returns:
- instance of the builder, which has no specifications done to it yet.
-
withServiceName
public PathInfoBuilder withServiceName(java.lang.String name)
-
withEntitySet
public PathInfoBuilder withEntitySet(java.lang.String set)
-
withEntityKeys
public PathInfoBuilder withEntityKeys(java.lang.String... keys)
-
withNavigationSegment
public PathInfoBuilder withNavigationSegment(java.lang.String segment)
-
withRequestPath
public PathInfoBuilder withRequestPath(java.lang.String path)
-
build
public org.apache.olingo.odata2.core.PathInfoImpl build()
-
-