001 /**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017 package org.apache.geronimo.corba.security.config.tss;
018
019 import java.io.Serializable;
020 import javax.security.auth.x500.X500Principal;
021
022
023 /**
024 * @version $Revision: 503274 $ $Date: 2007-02-03 10:19:18 -0800 (Sat, 03 Feb 2007) $
025 */
026 public class TSSEntity implements Serializable {
027 private String hostname;
028 private X500Principal distinguishedName;
029
030 public String getHostname() {
031 return hostname;
032 }
033
034 public void setHostname(String hostname) {
035 this.hostname = hostname;
036 }
037
038 public X500Principal getDistinguishedName() {
039 return distinguishedName;
040 }
041
042 public void setDistinguishedName(X500Principal distinguishedName) {
043 this.distinguishedName = distinguishedName;
044 }
045 public String toString() {
046 StringBuffer buf = new StringBuffer();
047 toString("", buf);
048 return buf.toString();
049 }
050
051 void toString(String spaces, StringBuffer buf) {
052 String moreSpaces = spaces + " ";
053 buf.append(spaces).append("TSSEntity: [\n");
054 buf.append(moreSpaces).append("hostname: ").append(hostname).append("\n");
055 buf.append(moreSpaces).append("distinguishedName: ").append(distinguishedName).append("\n");
056 buf.append(spaces).append("]\n");
057 }
058
059 }