blob: 86509989947f41063344d9357482016b70953dca [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.client.repository.impl;
import java.util.List;
import java.util.Map;
import org.apache.ace.client.repository.object.TargetObject;
import org.apache.ace.client.repository.object.Feature2DistributionAssociation;
import org.apache.ace.client.repository.object.FeatureObject;
import org.apache.ace.client.repository.object.Distribution2TargetAssociation;
import org.apache.ace.client.repository.object.DistributionObject;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
/**
* Implementation class for the DistributionObject. For 'what it does', see DistributionObject,
* for 'how it works', see RepositoryObjectImpl.
*/
public class DistributionObjectImpl extends RepositoryObjectImpl<DistributionObject> implements DistributionObject {
private final static String XML_NODE = "distribution";
DistributionObjectImpl(Map<String, String> attributes, Map<String, String> tags, ChangeNotifier notifier) {
super(checkAttributes(attributes, KEY_NAME), tags, notifier, XML_NODE);
}
DistributionObjectImpl(Map<String, String> attributes, ChangeNotifier notifier) {
super(checkAttributes(attributes, KEY_NAME), notifier, XML_NODE);
}
DistributionObjectImpl(HierarchicalStreamReader reader, ChangeNotifier notifier) {
super(reader, notifier, XML_NODE);
}
public List<TargetObject> getTargets() {
return getAssociations(TargetObject.class);
}
public List<FeatureObject> getFeatures() {
return getAssociations(FeatureObject.class);
}
public String getDescription() {
return getAttribute(KEY_DESCRIPTION);
}
public String getName() {
return getAttribute(KEY_NAME);
}
public void setDescription(String description) {
addAttribute(KEY_DESCRIPTION, description);
}
public void setName(String name) {
addAttribute(KEY_NAME, name);
}
public List<Feature2DistributionAssociation> getAssociationsWith(FeatureObject feature) {
return getAssociationsWith(feature, FeatureObject.class, Feature2DistributionAssociation.class);
}
public List<Distribution2TargetAssociation> getAssociationsWith(TargetObject target) {
return getAssociationsWith(target, TargetObject.class, Distribution2TargetAssociation.class);
}
private static String[] DEFINING_KEYS = new String[] {KEY_NAME};
@Override
String[] getDefiningKeys() {
return DEFINING_KEYS;
}
}