Blog.java
/*
* Copyright © 2011 Nokia Corporation. All rights reserved.
* Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation.
* Oracle and Java are trademarks or registered trademarks of Oracle and/or its
* affiliates. Other product and company names mentioned herein may be trademarks
* or trade names of their respective owners.
* See LICENSE.TXT for license information.
*/
package com.nokia.example.wordpress.networking;
/**
* Blog describes a blog of a Wordpress user.
* In this application only the first blog the user has created is read from
* the server.
*/
public class Blog {
/**
* Blog identifier
*/
public String blogId;
/**
* Blog name
*/
public String name;
/**
* Server URI to be used for xml requests.
*/
public String xmlrpcUrl;
/**
* Blog user
*/
public String blogUser;
/**
* Blog user password
*/
public String blogUserPassword;
/**
* Latest error string returned by the server during loading of the blog.
*/
public String faultString;
}