Package javax.xml.registry

Examples of javax.xml.registry.UnsupportedCapabilityException


        key = k;
    }

    public String toXML() throws JAXRException
    {
        throw new UnsupportedCapabilityException("toXML is not supported");
    }
View Full Code Here


    // Level 1 features must throw exceptions
    ///////////////////////////////////////////////////////////////////////////

    public Collection getAuditTrail() throws JAXRException
    {
        throw new UnsupportedCapabilityException("Level 1 feature");
    }
View Full Code Here

        throw new UnsupportedCapabilityException("Level 1 feature");
    }

    public Collection getAssociatedObjects() throws JAXRException
    {
        throw new UnsupportedCapabilityException("Level 1 feature");
    }
View Full Code Here

        throw new UnsupportedCapabilityException("Level 1 feature");
    }

    public Concept getObjectType() throws JAXRException
    {
        throw new UnsupportedCapabilityException("Level 1 feature");
    }
View Full Code Here

        throw new UnsupportedCapabilityException("Level 1 feature");
    }

    public Collection getRegistryPackages() throws JAXRException
    {
        throw new UnsupportedCapabilityException("Level 1 feature");
    }
View Full Code Here

    public BulkResponse findRegistryPackages(Collection findQualifiers,
                                             Collection namePatterns,
                                             Collection classifications,
                                             Collection externalLinks) throws JAXRException
    {
        throw new UnsupportedCapabilityException();
    }
View Full Code Here

        return blkRes;
    }

    public RegistryObject getRegistryObject(String id) throws JAXRException
    {
        throw new UnsupportedCapabilityException();
    }
View Full Code Here

        return new BulkResponseImpl(c);
    }

    public BulkResponse getRegistryObjects(Collection objectKeys) throws JAXRException
    {
        throw new UnsupportedCapabilityException();
    }
View Full Code Here

        {
            String jaxrQualifier = (String) i.next();
            String juddiQualifier = jaxrQualifier;
            if (juddiQualifier == null)
            {
                throw new UnsupportedCapabilityException("jUDDI does not support FindQualifer: " + jaxrQualifier);
            }
            result.getFindQualifier().add(juddiQualifier);
        }
        return result;
    }
View Full Code Here

        this.fullname = str;
    }

    public String getFirstName() throws JAXRException
    {
        throw new UnsupportedCapabilityException();
    }
View Full Code Here

TOP

Related Classes of javax.xml.registry.UnsupportedCapabilityException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.