Android Open Source - androidHarmony Oa Iq






From Project

Back to project page androidHarmony.

License

The source code is released under:

Copyright (c) 2014 Itay Bianco <itay_bia@hotmail.com> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the followin...

If you think the Android project androidHarmony listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.harmony.api;
//from   w w  w.java2 s .c o m
import org.jivesoftware.smack.packet.IQ;

/**
 * 
 * @author Owner
 * an IQ packet that holds the text taken from the "oa" extension that the harmony hub uses
 *
 */
public class OaIq extends IQ {
    private String text = null;

    public OaIq(String aText) {
        text = aText;
    }

    @Override
    public String getChildElementXML() {
        return null;
    }

    public String GetData() {
        return text;
    }
}




Java Source Code List

com.harmony.api.Authentication.java
com.harmony.api.ClientBase.java
com.harmony.api.Client.java
com.harmony.api.JabberSmackAPI.java
com.harmony.api.OaIqProvider.java
com.harmony.api.OaIq.java
com.harmony.client.MainActivity.java