blob: 5afb444a710d3fbc97a4c4b4d5879d46bd8d56c7 [file] [log] [blame]
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* 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 org.apache.ws.scout.registry.infomodel;
import java.util.ArrayList;
import java.util.Collection;
import javax.xml.registry.JAXRException;
import javax.xml.registry.LifeCycleManager;
import javax.xml.registry.infomodel.RegistryObject;
/**
* Implements JAXR Interface.
* For futher details, look into the JAXR API Javadoc.
*
* @author Anil Saldhana <anil@apache.org>
*/
public class ExternalLinkImpl extends RegistryObjectImpl
implements javax.xml.registry.infomodel.ExternalLink
{
private String uri = new String();
private boolean validateuri = false;
private Collection<RegistryObject> linkedObj = new ArrayList<RegistryObject>();
/**
* Creates a new instance of ExternalLinkImpl
*/
public ExternalLinkImpl(LifeCycleManager lifeCycleManager)
{
super(lifeCycleManager);
}
public String getExternalURI() throws JAXRException
{
return uri;
}
public Collection getLinkedObjects() throws JAXRException
{
return linkedObj;
}
public boolean getValidateURI() throws JAXRException
{
return validateuri;
}
public void setExternalURI(String str) throws JAXRException
{
this.uri = str;
}
public void setValidateURI(boolean param) throws JAXRException
{
this.validateuri = param;
}
//Specific API
public void addLinkedObject(RegistryObject obj)
{
linkedObj.add(obj);
}
public void removeLinkedObject(RegistryObject obj)
{
linkedObj.remove(obj);
}
}