com.facebook.api.schema.Metrics Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.07.20 at 05:29:33 PM PDT
//
package com.facebook.api.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"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "metrics", propOrder = {
})
public class Metrics {
@XmlElement(name = "end_time")
protected Integer 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;
/**
* Gets the value of the endTime property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getEndTime() {
return endTime;
}
/**
* Sets the value of the endTime property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setEndTime(Integer 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy