001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.security.ntlm;
016    
017    import com.liferay.portal.kernel.util.StringPool;
018    
019    /**
020     * @author Marcellus Tavares
021     */
022    public class NtlmServiceAccount {
023    
024            public NtlmServiceAccount(String account, String password) {
025                    setAccount(account);
026                    setPassword(password);
027            }
028    
029            public String getAccount() {
030                    return _account;
031            }
032    
033            public String getAccountName() {
034                    return _accountName;
035            }
036    
037            public String getComputerName() {
038                    return _computerName;
039            }
040    
041            public String getPassword() {
042                    return _password;
043            }
044    
045            public void setAccount(String account) {
046                    _account = account;
047    
048                    _accountName = _account.substring(0, _account.indexOf(StringPool.AT));
049                    _computerName = _account.substring(
050                            0, _account.indexOf(StringPool.DOLLAR));
051            }
052    
053            public void setPassword(String password) {
054                    _password = password;
055            }
056    
057            private String _account;
058            private String _accountName;
059            private String _computerName;
060            private String _password;
061    
062    }