/* * Copyright (c) 2008-2012, Hazel Bilisim Ltd. All Rights Reserved. * * 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 com.hazelcast.config; import com.hazelcast.nio.DataSerializable; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; public final class GroupConfig implements DataSerializable { public static final String DEFAULT_GROUP_PASSWORD = "dev-pass"; public static final String DEFAULT_GROUP_NAME = "dev"; private String name = DEFAULT_GROUP_NAME; private String password = DEFAULT_GROUP_PASSWORD; public GroupConfig() { } public GroupConfig(final String name) { setName(name); } public GroupConfig(final String name, final String password) { setName(name); setPassword(password); } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public GroupConfig setName(final String name) { if (name == null) { throw new NullPointerException("group name cannot be null"); } this.name = name; return this; } /** * @return the password */ public String getPassword() { return password; } /** * @param password the password to set */ public GroupConfig setPassword(final String password) { if (password == null) { throw new NullPointerException("group password cannot be null"); } this.password = password; return this; } @Override public int hashCode() { return (name != null ? name.hashCode() : 0) + 31 * (password != null ? password.hashCode() : 0); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (!(obj instanceof GroupConfig)) return false; GroupConfig other = (GroupConfig) obj; return (this.name == null ? other.name == null : this.name.equals(other.name)) && (this.password == null ? other.password == null : this.password.equals(other.password)); } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("GroupConfig [name=").append(this.name).append(", password="); for (int i = 0, len = password.length(); i < len; i++) { builder.append('*'); } builder.append("]"); return builder.toString(); } public void writeData(DataOutput out) throws IOException { out.writeUTF(name); out.writeUTF(password); } public void readData(DataInput in) throws IOException { name = in.readUTF(); password = in.readUTF(); } }