android inventory agent 1.0.0

Code documentation

--- layout: codeDocumentation --- --- layout: codeDocumentation --- ActivityInventoryReport
org.glpi.inventory.agent.ui

Class ActivityInventoryReport

  • java.lang.Object
    • AppCompatActivity
      • org.glpi.inventory.agent.ui.ActivityInventoryReport
  • All Implemented Interfaces:
    Report.View


    public class ActivityInventoryReport
    extends AppCompatActivity
    implements Report.View
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      protected void onCreate(android.os.Bundle savedInstanceState)
      Called when the activity is starting, inflates the activity's UI
      void onRequestPermissionsResult(int requestCode, java.lang.String[] permissions, int[] grantResults) 
      protected void onSaveInstanceState(android.os.Bundle outState) 
      void sendInventory(java.lang.String data, java.util.ArrayList<java.lang.String> load) 
      void showError(java.lang.String message) 
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ActivityInventoryReport

        public ActivityInventoryReport()
    • Method Detail

      • onCreate

        protected void onCreate(android.os.Bundle savedInstanceState)
        Called when the activity is starting, inflates the activity's UI
        Parameters:
        savedInstanceState - if the activity is re-initialized, it contains the data it most recently supplied
      • showError

        public void showError(java.lang.String message)
        Specified by:
        showError in interface Report.View
      • sendInventory

        public void sendInventory(java.lang.String data,
                                  java.util.ArrayList<java.lang.String> load)
        Specified by:
        sendInventory in interface Report.View
      • onRequestPermissionsResult

        public void onRequestPermissionsResult(int requestCode,
                                               java.lang.String[] permissions,
                                               int[] grantResults)
      • onSaveInstanceState

        protected void onSaveInstanceState(android.os.Bundle outState)
Back to top