/* * JSR 354 Stock-Trading Example * Copyright 2005-2013, Werner Keil and individual contributors by the @author tag. * See the copyright.txt in the distribution for a full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.java.javamoney.examples.tradingapp.business; import com.surveycom.sdj.Named; public class Credentials implements Named { private String username; private String password; private String market; //private Market defMarket; public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } /** * @return the current market place */ public String getMarket() { return market; } /** * @param market the market place to set */ public void setMarket(String market) { this.market = market; } /* (non-Javadoc) * @see java.lang.Object#hashCode() */ @Override public int hashCode() { final int PRIME = 31; int result = 1; result = PRIME * result + ((market == null) ? 0 : market.hashCode()); result = PRIME * result + ((password == null) ? 0 : password.hashCode()); result = PRIME * result + ((username == null) ? 0 : username.hashCode()); return result; } /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; final Credentials other = (Credentials) obj; if (market == null) { if (other.market != null) return false; } else if (!market.equals(other.market)) return false; if (password == null) { if (other.password != null) return false; } else if (!password.equals(other.password)) return false; if (username == null) { if (other.username != null) return false; } else if (!username.equals(other.username)) return false; return true; } public String getName() { return getUsername(); } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return getName(); } }