Package com.sun.xml.registry.uddi.bindings_v2_2

Examples of com.sun.xml.registry.uddi.bindings_v2_2.SharedRelationships


    /**
     * Create an instance of {@link TModelInstanceInfo }
     *
     */
    public TModelInstanceInfo createTModelInstanceInfo() {
        return new TModelInstanceInfo();
    }
View Full Code Here


    /**
     * Create an instance of {@link TModelList }
     *
     */
    public TModelList createTModelList() {
        return new TModelList();
    }
View Full Code Here

    /**
     * Create an instance of {@link ValidateValues }
     *
     */
    public ValidateValues createValidateValues() {
        return new ValidateValues();
    }
View Full Code Here

                if (sharedRelationships == null) {
                        return null;
                }
                List<SharedRelationships> r = new ArrayList<SharedRelationships>();
                for (int i = 0; i < sharedRelationships.size(); i++) {
                        SharedRelationships x = new SharedRelationships();

                        switch (sharedRelationships.get(i).getDirection()) {
                                case FROM_KEY:
                                        x.setDirection(Direction.FROM_KEY);
                                        break;
                                case TO_KEY:
                                        x.setDirection(Direction.TO_KEY);
                                        break;
                        }
                        x.getKeyedReference().addAll(MapKeyedReference(sharedRelationships.get(i).getKeyedReference()));
                        r.add(x);
                }
                return r;
        }
View Full Code Here

TOP

Related Classes of com.sun.xml.registry.uddi.bindings_v2_2.SharedRelationships

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.