com.veraxsystems.vxipmi.coding.commands.fru.GetFruInventoryAreaInfoResponseData Maven / Gradle / Ivy
The newest version!
/*
* GetFruInventoryAreaInfoResponseData.java
* Created on 2011-08-11
*
* Copyright (c) Verax Systems 2011.
* All rights reserved.
*
* This software is furnished under a license. Use, duplication,
* disclosure and all other uses are restricted to the rights
* specified in the written license agreement.
*/
package com.veraxsystems.vxipmi.coding.commands.fru;
import com.veraxsystems.vxipmi.coding.commands.ResponseData;
/**
* A wrapper for Get Fru Inventory Area Info response
*/
public class GetFruInventoryAreaInfoResponseData implements ResponseData {
private int fruInventoryAreaSize;
private BaseUnit fruUnit;
public int getFruInventoryAreaSize() {
return fruInventoryAreaSize;
}
public void setFruInventoryAreaSize(int fruInventoryAreaSize) {
this.fruInventoryAreaSize = fruInventoryAreaSize;
}
public BaseUnit getFruUnit() {
return fruUnit;
}
public void setFruUnit(BaseUnit fruUnit) {
this.fruUnit = fruUnit;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy