<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blogs at Jiya Soft</title>
	<atom:link href="http://jiyasoft.com/info/blogs/feed" rel="self" type="application/rss+xml" />
	<link>http://jiyasoft.com/info/blogs</link>
	<description>Your technical partners!</description>
	<lastBuildDate>Sat, 11 Dec 2010 02:39:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Java Annotations</title>
		<link>http://jiyasoft.com/info/blogs/archives/45</link>
		<comments>http://jiyasoft.com/info/blogs/archives/45#comments</comments>
		<pubDate>Fri, 02 Apr 2010 17:01:57 +0000</pubDate>
		<dc:creator>Girish</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Annotation]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://jiyasoft.com/info/blogs/?p=45</guid>
		<description><![CDATA[The Java platform has always had various ad hoc annotation mechanisms. For example the transient modifier is an ad hoc annotation indicating that a field should be ignored by the serialization subsystem, and the @deprecated javadoc tag is an ad hoc annotation indicating that the method should no longer be used. As of release 5.0, [...]]]></description>
		<wfw:commentRss>http://jiyasoft.com/info/blogs/archives/45/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does fibonacci series will get you a job?</title>
		<link>http://jiyasoft.com/info/blogs/archives/38</link>
		<comments>http://jiyasoft.com/info/blogs/archives/38#comments</comments>
		<pubDate>Sat, 27 Mar 2010 04:00:05 +0000</pubDate>
		<dc:creator>Girish Pandit</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fibonacci]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://jiyasoft.com/info/blogs/?p=38</guid>
		<description><![CDATA[The answer to this question would be, it depends who is interviewing. I had a talk with a person from a fortune 500 company and his opinion was that if you cannot write a Java program that displays fibonacci series that means you cannot write real world program. He may be right but in reality you are [...]]]></description>
		<wfw:commentRss>http://jiyasoft.com/info/blogs/archives/38/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which style of WSDL should I use?</title>
		<link>http://jiyasoft.com/info/blogs/archives/34</link>
		<comments>http://jiyasoft.com/info/blogs/archives/34#comments</comments>
		<pubDate>Sat, 27 Mar 2010 02:04:49 +0000</pubDate>
		<dc:creator>Girish Pandit</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Document]]></category>
		<category><![CDATA[Literal]]></category>
		<category><![CDATA[RPC]]></category>
		<category><![CDATA[WSDL]]></category>

		<guid isPermaLink="false">http://jiyasoft.com/info/blogs/?p=34</guid>
		<description><![CDATA[Summary: A Web Services Description Language (WSDL) binding style can be RPC or document. The use can be encoded or literal. How do you determine which combination of style and use to use? The author describes the WSDL and SOAP messages for each combination to help you decide. A WSDL document describes a Web service. [...]]]></description>
		<wfw:commentRss>http://jiyasoft.com/info/blogs/archives/34/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When is a Singleton not a Singleton?</title>
		<link>http://jiyasoft.com/info/blogs/archives/26</link>
		<comments>http://jiyasoft.com/info/blogs/archives/26#comments</comments>
		<pubDate>Sat, 27 Mar 2010 01:53:09 +0000</pubDate>
		<dc:creator>Girish Pandit</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Singleton]]></category>

		<guid isPermaLink="false">http://jiyasoft.com/info/blogs/?p=26</guid>
		<description><![CDATA[Original Article By Joshua Fox; Reprinted from JavaWorld The Singleton is a useful Design Pattern for allowing only one instance of your class, but common mistakes can inadvertently allow more than one instance to be created. In this article, I&#8217;ll show you how that can happen and how to avoid it. The Singleton&#8217;s purpose is to [...]]]></description>
		<wfw:commentRss>http://jiyasoft.com/info/blogs/archives/26/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Immutable objects</title>
		<link>http://jiyasoft.com/info/blogs/archives/15</link>
		<comments>http://jiyasoft.com/info/blogs/archives/15#comments</comments>
		<pubDate>Wed, 24 Mar 2010 01:41:47 +0000</pubDate>
		<dc:creator>Girish Pandit</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[final]]></category>
		<category><![CDATA[Immutable]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://jiyasoft.com/info/blogs/?p=15</guid>
		<description><![CDATA[Immutable objects are simply objects whose state (the object's data) cannot change after construction. Examples of immutable objects from the JDK include String and Integer.

Immutable objects have a very compelling list of positive qualities. Without question, they are among the simplest and most robust kinds of classes you can possibly build. When you create immutable classes, entire categories of problems simply disappear.]]></description>
		<wfw:commentRss>http://jiyasoft.com/info/blogs/archives/15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

