adding descriptions to lun commands, to be consumed by the xsl transformer

This commit is contained in:
abhishek 2011-01-11 14:24:33 -08:00
parent 5dfe399c1a
commit 45805db737
2 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,7 @@ import com.cloud.api.Parameter;
import com.cloud.api.response.ListResponse;
import com.cloud.api.response.PreallocatedLunResponse;
@Implementation(responseObject=PreallocatedLunResponse.class)
@Implementation(description="List PreallocatedLuns",responseObject=PreallocatedLunResponse.class)
public class ListPreallocatedLunsCmd extends BaseListCmd {
public static final Logger s_logger = Logger.getLogger(ListPreallocatedLunsCmd.class.getName());

View File

@ -24,8 +24,7 @@ import com.cloud.api.Parameter;
import com.cloud.api.ServerApiException;
import com.cloud.api.response.PreallocatedLunResponse;
//TODO - add description to @Implementation
@Implementation(responseObject=PreallocatedLunResponse.class)
@Implementation(description="Registers PreallocatedLun", responseObject=PreallocatedLunResponse.class)
public class RegisterPreallocatedLunCmd extends BaseCmd {
private static final String s_name = "registerPreallocatedLunsResponse";