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.security.deploy; 018 019 import java.beans.PropertyEditorManager; 020 021 import org.apache.geronimo.common.propertyeditor.PropertyEditorException; 022 import org.apache.geronimo.common.propertyeditor.TextPropertyEditorSupport; 023 024 025 /** 026 * @version $Rev: 706640 $ $Date: 2008-10-21 14:44:05 +0000 (Tue, 21 Oct 2008) $ 027 */ 028 public class RealmPrincipalInfo extends LoginDomainPrincipalInfo { 029 030 static { 031 PropertyEditorManager.registerEditor(RealmPrincipalInfo.class, RealmPrincipalEditor.class); 032 } 033 034 private final String realm; 035 036 public RealmPrincipalInfo(String realm, String domainName, String className, String principalName) { 037 super(domainName, className, principalName); 038 this.realm = realm; 039 } 040 041 public String getRealm() { 042 return realm; 043 } 044 045 public static class RealmPrincipalEditor extends TextPropertyEditorSupport { 046 047 public void setAsText(String text) { 048 if (text != null) { 049 String[] parts = text.split(","); 050 if (parts.length != 4) { 051 throw new PropertyEditorException("Principal should have the form 'realm,domain,class,name'"); 052 } 053 RealmPrincipalInfo principal = new RealmPrincipalInfo(parts[0], parts[1], parts[2], parts[3]); 054 setValue(principal); 055 } else { 056 setValue(null); 057 } 058 } 059 060 public String getAsText() { 061 RealmPrincipalInfo principal = (RealmPrincipalInfo) getValue(); 062 if (principal == null) { 063 return null; 064 } 065 // output from getAsText() should match with the input expected by setAsText() 066 return principal.getRealm() + "," + principal.getDomain() + "," + principal.getClassName() + "," + principal.getPrincipalName(); 067 } 068 } 069 }