blob: a9f93d3489787218aa7cb8384ebeb335154fd6d0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.ace.useradmin.repository.xstream;
import java.util.Dictionary;
import java.util.Enumeration;
import java.util.List;
import java.util.Properties;
public abstract class RoleDTO {
public final int type;
public final String name;
public final Properties properties;
public final Properties credentials;
public final List<String> memberOf;
protected RoleDTO(int type) {
this(type, null, null, null, null);
}
protected RoleDTO(int type, String name, Properties properties, Properties credentials, List<String> memberOf) {
this.type = type;
this.properties = properties;
this.credentials = credentials;
this.name = name;
this.memberOf = memberOf;
}
static Properties toProperties(Dictionary<Object, Object> dict) {
Properties properties = new Properties();
Enumeration<Object> keys = dict.keys();
while (keys.hasMoreElements()) {
Object key = (Object) keys.nextElement();
properties.put(key, dict.get(key));
}
return properties;
}
}