Allon Mureinik has posted comments on this change.

Change subject: restapi: add storage server connections resource
......................................................................


Patch Set 25: (7 inline comments)

....................................................
File 
backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/GetStorageServerConnectionByIdQuery.java
Line 13:     @Override
Line 14:     protected void executeQueryCommand() {
Line 15:         getQueryReturnValue().setReturnValue(DbFacade.getInstance().
Line 16:                 getStorageServerConnectionDao().get(getParameters().
Line 17:                           getServerConnectionId()));
This is just a formatting change - can you remove it from the patch?
Line 18:     }


....................................................
File 
backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/queries/StorageServerConnectionQueryParametersBase.java
Line 18:     public StorageServerConnectionQueryParametersBase(String 
serverConnectionId) {
Line 19:         setServerConnectionId(serverConnectionId);
Line 20:     }
Line 21: 
Line 22:     /**used by REST because AbstractBackendResource has id member that 
is always assumed to be guid
Add \n before "used" s/guid/Guid/, or better yet {@link Guid}
Line 23:      *
Line 24:      * @param serverConnectionId
Line 25:      */
Line 26:     public StorageServerConnectionQueryParametersBase(Guid 
serverConnectionId) {


....................................................
File 
backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/StorageServerConnectionDAODbFacadeImpl.java
Line 23: 
Line 24:     @Override
Line 25:     public List<StorageServerConnections> getAll() {
Line 26:         MapSqlParameterSource parameterSource = 
getCustomMapSqlParameterSource();
Line 27:         return 
getCallsHandler().executeReadList("GetAllstorage_server_connections", 
mapper,parameterSource) ;
please remove the whitespace before ";"
Line 28:     }
Line 29: 
Line 30:     @Override
Line 31:     public StorageServerConnections get(String id) {


....................................................
File 
backend/manager/modules/restapi/interface/definition/src/main/java/org/ovirt/engine/api/resource/StorageServerConnectionsResource.java
Line 24:     /**
Line 25:      * Adds a storage connection entity
Line 26:      *
Line 27:      * @param storageConnection  the storage connection to add
Line 28:      * @return        the new newly added storage connection
why all these spaces?
Line 29:      */
Line 30:     @POST
Line 31:     @Formatted
Line 32:     @Consumes({ApiMediaType.APPLICATION_XML, 
ApiMediaType.APPLICATION_JSON, ApiMediaType.APPLICATION_X_YAML})


....................................................
File 
backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/BackendStorageServerConnectionResource.java
Line 64:                             ? getEntity(VDS.class,
Line 65:                                     SearchType.VDS,
Line 66:                                     "Hosts: name=" + 
host.getName()).getId()
Line 67:                             : null;
Line 68:     }
This isn't indented correctly, please use the formatter.
Line 69:     }


....................................................
File 
backend/manager/modules/restapi/types/src/main/java/org/ovirt/engine/api/restapi/types/StorageDomainMapper.java
Line 12: import org.ovirt.engine.api.restapi.model.StorageFormat;
Line 13: import org.ovirt.engine.api.restapi.utils.GuidUtils;
Line 14: import 
org.ovirt.engine.core.common.businessentities.StorageDomainStatic;
Line 15: import 
org.ovirt.engine.core.common.businessentities.StorageServerConnections;
Line 16: 
Please remove the formatting noise from the patch
Line 17: public class StorageDomainMapper {
Line 18: 
Line 19:     @Mapping(from = StorageDomain.class, to = 
StorageDomainStatic.class)
Line 20:     public static StorageDomainStatic map(StorageDomain model, 
StorageDomainStatic template) {


....................................................
Commit Message
Line 19: Url is the same as item 4, different request type.
Line 20: 6. Add ability to get a specific connection by its id.
Line 21: Url is the same as item 4.
Line 22: 7. REST unitests
Line 23: 
Please add a link to the feature page
Line 24: Change-Id: If6bc32ead098390723825872f6fb292097d52835


-- 
To view, visit http://gerrit.ovirt.org/16617
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: If6bc32ead098390723825872f6fb292097d52835
Gerrit-PatchSet: 25
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Alissa Bonas <abo...@redhat.com>
Gerrit-Reviewer: Alissa Bonas <abo...@redhat.com>
Gerrit-Reviewer: Allon Mureinik <amure...@redhat.com>
Gerrit-Reviewer: Daniel Erez <de...@redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpast...@redhat.com>
Gerrit-Reviewer: Ori Liel <ol...@redhat.com>
Gerrit-Reviewer: Tal Nisan <tni...@redhat.com>
Gerrit-Reviewer: oVirt Jenkins CI Server
_______________________________________________
Engine-patches mailing list
Engine-patches@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to