blob: e4030799aa79c7588c253d0cfac3cc6cf05d4abe [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.apache.cloudstack.api.response;
import com.cloud.serializer.Param;
import org.apache.cloudstack.storage.object.ObjectStore;
import com.google.gson.annotations.SerializedName;
import org.apache.cloudstack.api.BaseResponseWithAnnotations;
import org.apache.cloudstack.api.EntityReference;
@EntityReference(value = ObjectStore.class)
public class ObjectStoreResponse extends BaseResponseWithAnnotations {
@SerializedName("id")
@Param(description = "the ID of the object store")
private String id;
@SerializedName("name")
@Param(description = "the name of the object store")
private String name;
@SerializedName("url")
@Param(description = "the url of the object store")
private String url;
@SerializedName("providername")
@Param(description = "the provider name of the object store")
private String providerName;
@SerializedName("storagetotal")
@Param(description = "the total size of the object store")
private Long storageTotal;
@SerializedName("storageused")
@Param(description = "the object store currently used size")
private Long storageUsed;
public ObjectStoreResponse() {
}
@Override
public String getObjectId() {
return this.getId();
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getProviderName() {
return providerName;
}
public void setProviderName(String providerName) {
this.providerName = providerName;
}
public Long getStorageTotal() {
return storageTotal;
}
public void setStorageTotal(Long storageTotal) {
this.storageTotal = storageTotal;
}
public Long getStorageUsed() {
return storageUsed;
}
public void setStorageUsed(Long storageUsed) {
this.storageUsed = storageUsed;
}
}