All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.code.facebookapi.schema.Metrics Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2008.12.01 at 07:56:21 PM GMT-08:00 
//


package com.google.code.facebookapi.schema;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for metrics complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="metrics">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="end_time" type="{http://api.facebook.com/1.0/}time" minOccurs="0"/>
 *         <element name="active_users" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="api_calls" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="unique_api_calls" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="unique_canvas_page_views" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_http_request_time_avg" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_fbml_render_time_avg" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="unique_adds" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="unique_removes" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="unique_blocks" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="unique_unblocks" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_0" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_100" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_200" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_200ND" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_301" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_302" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_303" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_400" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_401" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_403" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_404" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_405" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_413" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_422" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_500" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_502" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_503" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="canvas_page_views_http_code_505" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "metrics", propOrder = { }) public class Metrics { @XmlElement(name = "end_time") protected Long endTime; @XmlElement(name = "active_users") protected Integer activeUsers; @XmlElement(name = "api_calls") protected Integer apiCalls; @XmlElement(name = "unique_api_calls") protected Integer uniqueApiCalls; @XmlElement(name = "canvas_page_views") protected Integer canvasPageViews; @XmlElement(name = "unique_canvas_page_views") protected Integer uniqueCanvasPageViews; @XmlElement(name = "canvas_http_request_time_avg") protected Integer canvasHttpRequestTimeAvg; @XmlElement(name = "canvas_fbml_render_time_avg") protected Integer canvasFbmlRenderTimeAvg; @XmlElement(name = "unique_adds") protected Integer uniqueAdds; @XmlElement(name = "unique_removes") protected Integer uniqueRemoves; @XmlElement(name = "unique_blocks") protected Integer uniqueBlocks; @XmlElement(name = "unique_unblocks") protected Integer uniqueUnblocks; @XmlElement(name = "canvas_page_views_http_code_0") protected Integer canvasPageViewsHttpCode0; @XmlElement(name = "canvas_page_views_http_code_100") protected Integer canvasPageViewsHttpCode100; @XmlElement(name = "canvas_page_views_http_code_200") protected Integer canvasPageViewsHttpCode200; @XmlElement(name = "canvas_page_views_http_code_200ND") protected Integer canvasPageViewsHttpCode200ND; @XmlElement(name = "canvas_page_views_http_code_301") protected Integer canvasPageViewsHttpCode301; @XmlElement(name = "canvas_page_views_http_code_302") protected Integer canvasPageViewsHttpCode302; @XmlElement(name = "canvas_page_views_http_code_303") protected Integer canvasPageViewsHttpCode303; @XmlElement(name = "canvas_page_views_http_code_400") protected Integer canvasPageViewsHttpCode400; @XmlElement(name = "canvas_page_views_http_code_401") protected Integer canvasPageViewsHttpCode401; @XmlElement(name = "canvas_page_views_http_code_403") protected Integer canvasPageViewsHttpCode403; @XmlElement(name = "canvas_page_views_http_code_404") protected Integer canvasPageViewsHttpCode404; @XmlElement(name = "canvas_page_views_http_code_405") protected Integer canvasPageViewsHttpCode405; @XmlElement(name = "canvas_page_views_http_code_413") protected Integer canvasPageViewsHttpCode413; @XmlElement(name = "canvas_page_views_http_code_422") protected Integer canvasPageViewsHttpCode422; @XmlElement(name = "canvas_page_views_http_code_500") protected Integer canvasPageViewsHttpCode500; @XmlElement(name = "canvas_page_views_http_code_502") protected Integer canvasPageViewsHttpCode502; @XmlElement(name = "canvas_page_views_http_code_503") protected Integer canvasPageViewsHttpCode503; @XmlElement(name = "canvas_page_views_http_code_505") protected Integer canvasPageViewsHttpCode505; /** * Gets the value of the endTime property. * * @return * possible object is * {@link Long } * */ public Long getEndTime() { return endTime; } /** * Sets the value of the endTime property. * * @param value * allowed object is * {@link Long } * */ public void setEndTime(Long value) { this.endTime = value; } /** * Gets the value of the activeUsers property. * * @return * possible object is * {@link Integer } * */ public Integer getActiveUsers() { return activeUsers; } /** * Sets the value of the activeUsers property. * * @param value * allowed object is * {@link Integer } * */ public void setActiveUsers(Integer value) { this.activeUsers = value; } /** * Gets the value of the apiCalls property. * * @return * possible object is * {@link Integer } * */ public Integer getApiCalls() { return apiCalls; } /** * Sets the value of the apiCalls property. * * @param value * allowed object is * {@link Integer } * */ public void setApiCalls(Integer value) { this.apiCalls = value; } /** * Gets the value of the uniqueApiCalls property. * * @return * possible object is * {@link Integer } * */ public Integer getUniqueApiCalls() { return uniqueApiCalls; } /** * Sets the value of the uniqueApiCalls property. * * @param value * allowed object is * {@link Integer } * */ public void setUniqueApiCalls(Integer value) { this.uniqueApiCalls = value; } /** * Gets the value of the canvasPageViews property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViews() { return canvasPageViews; } /** * Sets the value of the canvasPageViews property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViews(Integer value) { this.canvasPageViews = value; } /** * Gets the value of the uniqueCanvasPageViews property. * * @return * possible object is * {@link Integer } * */ public Integer getUniqueCanvasPageViews() { return uniqueCanvasPageViews; } /** * Sets the value of the uniqueCanvasPageViews property. * * @param value * allowed object is * {@link Integer } * */ public void setUniqueCanvasPageViews(Integer value) { this.uniqueCanvasPageViews = value; } /** * Gets the value of the canvasHttpRequestTimeAvg property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasHttpRequestTimeAvg() { return canvasHttpRequestTimeAvg; } /** * Sets the value of the canvasHttpRequestTimeAvg property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasHttpRequestTimeAvg(Integer value) { this.canvasHttpRequestTimeAvg = value; } /** * Gets the value of the canvasFbmlRenderTimeAvg property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasFbmlRenderTimeAvg() { return canvasFbmlRenderTimeAvg; } /** * Sets the value of the canvasFbmlRenderTimeAvg property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasFbmlRenderTimeAvg(Integer value) { this.canvasFbmlRenderTimeAvg = value; } /** * Gets the value of the uniqueAdds property. * * @return * possible object is * {@link Integer } * */ public Integer getUniqueAdds() { return uniqueAdds; } /** * Sets the value of the uniqueAdds property. * * @param value * allowed object is * {@link Integer } * */ public void setUniqueAdds(Integer value) { this.uniqueAdds = value; } /** * Gets the value of the uniqueRemoves property. * * @return * possible object is * {@link Integer } * */ public Integer getUniqueRemoves() { return uniqueRemoves; } /** * Sets the value of the uniqueRemoves property. * * @param value * allowed object is * {@link Integer } * */ public void setUniqueRemoves(Integer value) { this.uniqueRemoves = value; } /** * Gets the value of the uniqueBlocks property. * * @return * possible object is * {@link Integer } * */ public Integer getUniqueBlocks() { return uniqueBlocks; } /** * Sets the value of the uniqueBlocks property. * * @param value * allowed object is * {@link Integer } * */ public void setUniqueBlocks(Integer value) { this.uniqueBlocks = value; } /** * Gets the value of the uniqueUnblocks property. * * @return * possible object is * {@link Integer } * */ public Integer getUniqueUnblocks() { return uniqueUnblocks; } /** * Sets the value of the uniqueUnblocks property. * * @param value * allowed object is * {@link Integer } * */ public void setUniqueUnblocks(Integer value) { this.uniqueUnblocks = value; } /** * Gets the value of the canvasPageViewsHttpCode0 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode0() { return canvasPageViewsHttpCode0; } /** * Sets the value of the canvasPageViewsHttpCode0 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode0(Integer value) { this.canvasPageViewsHttpCode0 = value; } /** * Gets the value of the canvasPageViewsHttpCode100 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode100() { return canvasPageViewsHttpCode100; } /** * Sets the value of the canvasPageViewsHttpCode100 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode100(Integer value) { this.canvasPageViewsHttpCode100 = value; } /** * Gets the value of the canvasPageViewsHttpCode200 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode200() { return canvasPageViewsHttpCode200; } /** * Sets the value of the canvasPageViewsHttpCode200 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode200(Integer value) { this.canvasPageViewsHttpCode200 = value; } /** * Gets the value of the canvasPageViewsHttpCode200ND property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode200ND() { return canvasPageViewsHttpCode200ND; } /** * Sets the value of the canvasPageViewsHttpCode200ND property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode200ND(Integer value) { this.canvasPageViewsHttpCode200ND = value; } /** * Gets the value of the canvasPageViewsHttpCode301 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode301() { return canvasPageViewsHttpCode301; } /** * Sets the value of the canvasPageViewsHttpCode301 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode301(Integer value) { this.canvasPageViewsHttpCode301 = value; } /** * Gets the value of the canvasPageViewsHttpCode302 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode302() { return canvasPageViewsHttpCode302; } /** * Sets the value of the canvasPageViewsHttpCode302 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode302(Integer value) { this.canvasPageViewsHttpCode302 = value; } /** * Gets the value of the canvasPageViewsHttpCode303 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode303() { return canvasPageViewsHttpCode303; } /** * Sets the value of the canvasPageViewsHttpCode303 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode303(Integer value) { this.canvasPageViewsHttpCode303 = value; } /** * Gets the value of the canvasPageViewsHttpCode400 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode400() { return canvasPageViewsHttpCode400; } /** * Sets the value of the canvasPageViewsHttpCode400 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode400(Integer value) { this.canvasPageViewsHttpCode400 = value; } /** * Gets the value of the canvasPageViewsHttpCode401 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode401() { return canvasPageViewsHttpCode401; } /** * Sets the value of the canvasPageViewsHttpCode401 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode401(Integer value) { this.canvasPageViewsHttpCode401 = value; } /** * Gets the value of the canvasPageViewsHttpCode403 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode403() { return canvasPageViewsHttpCode403; } /** * Sets the value of the canvasPageViewsHttpCode403 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode403(Integer value) { this.canvasPageViewsHttpCode403 = value; } /** * Gets the value of the canvasPageViewsHttpCode404 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode404() { return canvasPageViewsHttpCode404; } /** * Sets the value of the canvasPageViewsHttpCode404 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode404(Integer value) { this.canvasPageViewsHttpCode404 = value; } /** * Gets the value of the canvasPageViewsHttpCode405 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode405() { return canvasPageViewsHttpCode405; } /** * Sets the value of the canvasPageViewsHttpCode405 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode405(Integer value) { this.canvasPageViewsHttpCode405 = value; } /** * Gets the value of the canvasPageViewsHttpCode413 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode413() { return canvasPageViewsHttpCode413; } /** * Sets the value of the canvasPageViewsHttpCode413 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode413(Integer value) { this.canvasPageViewsHttpCode413 = value; } /** * Gets the value of the canvasPageViewsHttpCode422 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode422() { return canvasPageViewsHttpCode422; } /** * Sets the value of the canvasPageViewsHttpCode422 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode422(Integer value) { this.canvasPageViewsHttpCode422 = value; } /** * Gets the value of the canvasPageViewsHttpCode500 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode500() { return canvasPageViewsHttpCode500; } /** * Sets the value of the canvasPageViewsHttpCode500 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode500(Integer value) { this.canvasPageViewsHttpCode500 = value; } /** * Gets the value of the canvasPageViewsHttpCode502 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode502() { return canvasPageViewsHttpCode502; } /** * Sets the value of the canvasPageViewsHttpCode502 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode502(Integer value) { this.canvasPageViewsHttpCode502 = value; } /** * Gets the value of the canvasPageViewsHttpCode503 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode503() { return canvasPageViewsHttpCode503; } /** * Sets the value of the canvasPageViewsHttpCode503 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode503(Integer value) { this.canvasPageViewsHttpCode503 = value; } /** * Gets the value of the canvasPageViewsHttpCode505 property. * * @return * possible object is * {@link Integer } * */ public Integer getCanvasPageViewsHttpCode505() { return canvasPageViewsHttpCode505; } /** * Sets the value of the canvasPageViewsHttpCode505 property. * * @param value * allowed object is * {@link Integer } * */ public void setCanvasPageViewsHttpCode505(Integer value) { this.canvasPageViewsHttpCode505 = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy