blob: 67f511e329369daa8f26215507774ca3a6e6fb5b [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 javax.xml.registry.JAXRException;
import javax.xml.registry.UnsupportedCapabilityException;
/**
* Implements JAXR Interface.
* For futher details, look into the JAXR API Javadoc.
*
* @author Anil Saldhana <anil@apache.org>
*/
public class PersonNameImpl implements javax.xml.registry.infomodel.PersonName
{
private String fullname = "";
/**
* Creates a new instance of PersonNameImpl
*/
public PersonNameImpl()
{
}
public PersonNameImpl(String fullname)
{
this.fullname = fullname;
}
public String getFullName() throws JAXRException
{
return this.fullname;
}
public void setFullName(String str) throws JAXRException
{
this.fullname = str;
}
public String getFirstName() throws JAXRException
{
throw new UnsupportedCapabilityException();
}
public String getLastName() throws JAXRException
{
throw new UnsupportedCapabilityException();
}
public String getMiddleName() throws JAXRException
{
throw new UnsupportedCapabilityException();
}
public void setFirstName(String str) throws JAXRException
{
throw new UnsupportedCapabilityException();
}
public void setLastName(String str) throws JAXRException
{
throw new UnsupportedCapabilityException();
}
public void setMiddleName(String str) throws JAXRException
{
throw new UnsupportedCapabilityException();
}
}