Show
Ignore:
Timestamp:
07/03/08 19:49:47 (5 months ago)
Author:
yamashiro
Message:

不正なid/パスワードのときに固まる問題が再現したので修正した。また、その際に、userNameなどをuserIdに統一するようにリファクタリングしたり、その他のリファクタを行った

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/wassr/WassrUser.java

    r15107 r15114  
    55import jp.xet.sabotter.core.MiniblogUser; 
    66 
    7 @SuppressWarnings("serial") 
     7/** 
     8 * {@inheritDoc} 
     9 */ 
    810public class WassrUser implements MiniblogUser { 
     11         
     12        private static final long serialVersionUID = 1L; 
    913         
    1014        private String screenName; 
     
    1519         
    1620 
     21        /** 
     22         * コンストラクタです。 
     23         *  
     24         * @param name 名前 
     25         * @param screenName 表示名 
     26         * @param profileImageURL プロフィール表示用URL 
     27         */ 
    1728        public WassrUser(String name, String screenName, URL profileImageURL) { 
    1829                this.name = name; 
     
    2839        } 
    2940         
     41        /** 
     42         * {@inheritDoc} 
     43         */ 
    3044        public String getName() { 
    3145                return name; 
    3246        } 
    3347         
     48        /** 
     49         * {@inheritDoc} 
     50         */ 
    3451        public URL getProfileImageURL() { 
    3552                return profileImageURL; 
    3653        } 
    3754         
     55        /** 
     56         * {@inheritDoc} 
     57         */ 
    3858        public String getUserId() { 
    3959                return screenName;