Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Request Implementation constructors public #66

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public class ODataDeleteRequestImpl extends AbstractODataBasicRequest<ODataDeleteResponse>
implements ODataDeleteRequest {

ODataDeleteRequestImpl(final ODataClient odataClient, final HttpMethod method, final URI uri) {
public ODataDeleteRequestImpl(final ODataClient odataClient, final HttpMethod method, final URI uri) {
super(odataClient, method, uri);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class ODataEntityCreateRequestImpl<E extends ClientEntity>
* @param targetURI entity set URI.
* @param entity entity to be created.
*/
ODataEntityCreateRequestImpl(final ODataClient odataClient, final URI targetURI, final E entity) {
public ODataEntityCreateRequestImpl(final ODataClient odataClient, final URI targetURI, final E entity) {
super(odataClient, HttpMethod.POST, targetURI);
this.entity = entity;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class ODataPropertyUpdateRequestImpl extends AbstractODataBasicRequest<OD
* @param targetURI entity set or entity or entity property URI.
* @param property value to be created.
*/
ODataPropertyUpdateRequestImpl(final ODataClient odataClient,
public ODataPropertyUpdateRequestImpl(final ODataClient odataClient,
final HttpMethod method, final URI targetURI, final ClientProperty property) {

super(odataClient, method, targetURI);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ODataReferenceAddingRequestImpl extends AbstractODataBasicRequest<O

final ResWrap<URI> reference;

ODataReferenceAddingRequestImpl(
public ODataReferenceAddingRequestImpl(
final ODataClient odataClient, final HttpMethod method, final URI uri, final ResWrap<URI> reference) {
super(odataClient, method, uri);
this.reference = reference;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class ODataValueUpdateRequestImpl extends AbstractODataBasicRequest<OData
* @param targetURI entity set or entity or entity property URI.
* @param value value to be created.
*/
ODataValueUpdateRequestImpl(final ODataClient odataClient,
public ODataValueUpdateRequestImpl(final ODataClient odataClient,
final HttpMethod method, final URI targetURI, final ClientPrimitiveValue value) {

super(odataClient, method, targetURI);
Expand Down