// Copyright 2012 Citrix Systems, Inc. Licensed under the // Apache License, Version 2.0 (the "License"); you may not use this // file except in compliance with the License. Citrix Systems, Inc. // reserves all rights not expressly granted by 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. // // Automatically generated by addcopyright.py at 04/03/2012 package com.cloud.vm.dao; import java.util.Date; import java.util.List; import com.cloud.info.ConsoleProxyLoadInfo; import com.cloud.utils.Pair; import com.cloud.utils.db.GenericDao; import com.cloud.vm.ConsoleProxyVO; import com.cloud.vm.VirtualMachine.State; public interface ConsoleProxyDao extends GenericDao<ConsoleProxyVO, Long> { public void update(long id, int activeSession, Date updateTime, byte[] sessionDetails); public List<ConsoleProxyVO> getProxyListInStates(long dataCenterId, State... states); public List<ConsoleProxyVO> getProxyListInStates(State... states); public List<ConsoleProxyVO> listByHostId(long hostId); public List<ConsoleProxyVO> listByLastHostId(long hostId); public List<ConsoleProxyVO> listUpByHostId(long hostId); public List<ConsoleProxyLoadInfo> getDatacenterProxyLoadMatrix(); public List<ConsoleProxyLoadInfo> getDatacenterVMLoadMatrix(); public List<ConsoleProxyLoadInfo> getDatacenterSessionLoadMatrix(); public List<Pair<Long, Integer>> getDatacenterStoragePoolHostInfo(long dcId, boolean countAllPoolTypes); public List<Pair<Long, Integer>> getProxyLoadMatrix(); public int getProxyStaticLoad(long proxyVmId); public int getProxyActiveLoad(long proxyVmId); public List<Long> getRunningProxyListByMsid(long msid); }