Package com.cloud.usage

Source Code of com.cloud.usage.UsageTypes

// 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 com.cloud.usage;

import java.util.ArrayList;
import java.util.List;

import com.cloud.server.api.response.UsageTypeResponse;

public class UsageTypes {
    public static final int RUNNING_VM = 1;
    public static final int ALLOCATED_VM = 2; // used for tracking how long storage has been allocated for a VM
    public static final int IP_ADDRESS = 3;
    public static final int NETWORK_BYTES_SENT = 4;
    public static final int NETWORK_BYTES_RECEIVED = 5;
    public static final int VOLUME = 6;
    public static final int TEMPLATE = 7;
    public static final int ISO = 8;
    public static final int SNAPSHOT = 9;
    public static final int SECURITY_GROUP = 10;
    public static final int LOAD_BALANCER_POLICY = 11;
    public static final int PORT_FORWARDING_RULE = 12;
    public static final int NETWORK_OFFERING = 13;
    public static final int VPN_USERS = 14;
   
    public static List<UsageTypeResponse> listUsageTypes(){
      List<UsageTypeResponse> responseList = new ArrayList<UsageTypeResponse>();
      responseList.add(new UsageTypeResponse(RUNNING_VM, "Running Vm Usage"));
      responseList.add(new UsageTypeResponse(ALLOCATED_VM, "Allocated Vm Usage"));
      responseList.add(new UsageTypeResponse(IP_ADDRESS, "IP Address Usage"));
      responseList.add(new UsageTypeResponse(NETWORK_BYTES_SENT, "Network Usage (Bytes Sent)"));
      responseList.add(new UsageTypeResponse(NETWORK_BYTES_RECEIVED, "Network Usage (Bytes Received)"));
      responseList.add(new UsageTypeResponse(VOLUME, "Volume Usage"));
      responseList.add(new UsageTypeResponse(TEMPLATE, "Template Usage"));
      responseList.add(new UsageTypeResponse(ISO, "ISO Usage"));
      responseList.add(new UsageTypeResponse(SNAPSHOT, "Snapshot Usage"));
      responseList.add(new UsageTypeResponse(SECURITY_GROUP, "Security Group Usage"));
      responseList.add(new UsageTypeResponse(LOAD_BALANCER_POLICY, "Load Balancer Usage"));
      responseList.add(new UsageTypeResponse(PORT_FORWARDING_RULE, "Port Forwarding Usage"));
      responseList.add(new UsageTypeResponse(NETWORK_OFFERING, "Network Offering Usage"));
      responseList.add(new UsageTypeResponse(VPN_USERS, "VPN users usage"));
      return responseList;
    }
}
TOP

Related Classes of com.cloud.usage.UsageTypes

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.