[OLINGO-468] Fixed javadoc warning in lib
This commit is contained in:
parent
47c1851273
commit
58b3896f7d
|
@ -153,8 +153,6 @@ public enum HeaderName {
|
|||
* request), and a server MAY honor the header for HTTP POST, PUT, PATCH, and MERGE requests. A Prefer header with a
|
||||
* value of “return-content” MUST NOT be specified on a DELETE request, a batch request as a whole, or a PUT request
|
||||
* to update a named stream.
|
||||
*
|
||||
* @see ODataPreferenceNames.
|
||||
*/
|
||||
prefer("Prefer", Arrays.asList(ODataServiceVersion.V30, ODataServiceVersion.V40)),
|
||||
/**
|
||||
|
|
|
@ -33,7 +33,6 @@ import org.apache.olingo.commons.api.http.HttpMethod;
|
|||
* @see org.apache.olingo.client.api.communication.request.batch.v3.BatchRequestFactory
|
||||
* @see org.apache.olingo.client.api.communication.request.batch.v4.BatchRequestFactory
|
||||
* @see org.apache.olingo.client.api.communication.request.invoke.InvokeRequestFactory
|
||||
* @see org.apache.olingo.client.api.communication.request.streamed.StreamedRequestFactory
|
||||
*/
|
||||
public interface ODataRequest {
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ public interface AsyncRequestWrapper<R extends ODataResponse> {
|
|||
/**
|
||||
* execute the request for the first time.
|
||||
*
|
||||
* @return
|
||||
* @return the current AsyncRequestWrapper instance.
|
||||
*/
|
||||
AsyncResponseWrapper<R> execute();
|
||||
}
|
||||
|
|
|
@ -78,7 +78,6 @@ public abstract class AbstractODataBatchRequestItem extends AbstractODataStreame
|
|||
* <p>
|
||||
* Use this method to stream changeset items.
|
||||
*
|
||||
* @param request request to be batched.
|
||||
* @param contentId changeset item id.
|
||||
*/
|
||||
protected void streamRequestHeader(final String contentId) {
|
||||
|
|
|
@ -40,7 +40,7 @@ public class ParameterAlias {
|
|||
/**
|
||||
* Gets parameter alias.
|
||||
*
|
||||
* @return
|
||||
* @return parameter alias
|
||||
*/
|
||||
public String getAlias() {
|
||||
return alias;
|
||||
|
|
|
@ -26,6 +26,10 @@ import org.apache.olingo.server.core.uri.queryoption.SelectItemImpl;
|
|||
|
||||
import java.util.Stack;
|
||||
|
||||
/**
|
||||
* UriContext object used for holding information for URI parsing.
|
||||
*
|
||||
*/
|
||||
public class UriContext {
|
||||
|
||||
public static class LambdaVariables {
|
||||
|
@ -48,11 +52,14 @@ public class UriContext {
|
|||
// CHECKSTYLE:OFF (Maven checkstyle)
|
||||
/**
|
||||
* Set within method
|
||||
* {@link #visitExpandItem(org.apache.olingo.server.core.uri.antlr.UriParserParser.ExpandPathContext ctx)} and {@link
|
||||
* #visitExpandPathExtension(final
|
||||
* ExpandPathExtensionContext ctx)} to allow nodes
|
||||
* {@link org.apache.olingo.server.core.uri.antlr.UriParserBaseVisitor#visitExpandItem(
|
||||
* org.apache.olingo.server.core.uri.antlr.UriParserParser.ExpandItemContext ctx)}
|
||||
* and {@link
|
||||
* org.apache.olingo.server.core.uri.antlr.UriParserBaseVisitor#visitExpandPathExtension(
|
||||
* org.apache.olingo.server.core.uri.antlr.UriParserParser.ExpandPathExtensionContext ctx)} to allow nodes
|
||||
* deeper in the expand tree at
|
||||
* {@link #visitExpandPathExtension (org.apache.olingo.server.core.uri.antlr.UriParserParser.ExpandPathExtensionContext ctx)}
|
||||
* {@link org.apache.olingo.server.core.uri.antlr.UriParserBaseVisitor#visitExpandPathExtension(
|
||||
* org.apache.olingo.server.core.uri.antlr.UriParserParser.ExpandPathExtensionContext ctx)}
|
||||
* appending path
|
||||
* segments to the currently processed {@link ExpandItemImpl}.
|
||||
*/
|
||||
|
@ -61,10 +68,12 @@ public class UriContext {
|
|||
|
||||
/**
|
||||
* Set within method
|
||||
* {@link #visitSelectItem(org.apache.olingo.server.core.uri.antlr.UriParserParser.SelectItemContext ctx)} to allow
|
||||
* {@link org.apache.olingo.server.core.uri.antlr.UriParserBaseVisitor#visitSelectItem(
|
||||
* org.apache.olingo.server.core.uri.antlr.UriParserParser.SelectItemContext ctx)} to allow
|
||||
* nodes
|
||||
* deeper in the expand tree at
|
||||
* {@link #visitSelectSegment(org.apache.olingo.server.core.uri.antlr.UriParserParser.SelectSegmentContext ctx)}
|
||||
* {@link org.apache.olingo.server.core.uri.antlr.UriParserBaseVisitor#visitSelectSegment(
|
||||
* org.apache.olingo.server.core.uri.antlr.UriParserParser.SelectSegmentContext ctx)}
|
||||
* appending path segments to the
|
||||
* currently processed {@link SelectItemImpl}.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue