Package org.globus.wsrf.impl

Examples of org.globus.wsrf.impl.SimpleResourceKey


            if (values.length != 2) {
                throw new ParseException("-k requires two arguments");
            }
            QName keyName = QName.valueOf(values[0]);
            ReferencePropertiesType props = new ReferencePropertiesType();
            SimpleResourceKey key = new SimpleResourceKey(keyName, values[1]);
            props.add(key.toSOAPElement());
            this.endpoint.setProperties(props);
        }

        this.debugMode = line.hasOption("d");
View Full Code Here


    }

    public static ResourceKey getResourceKey(final EndpointReferenceType epr)
            throws Exception {
        final QName keyQName = Constants_GT4_0.GROUP_RESOURCE_KEY_QNAME;
        return new SimpleResourceKey(keyQName, getResourceID(epr));
    }
View Full Code Here

     * @see ContextBrokerHome#getResourceKey
     */
    public ResourceKey getResourceKey(EndpointReferenceType epr)
            throws ContextBrokerException {

        return new SimpleResourceKey(this.getKeyTypeName(),
                                     this.getID(epr));
    }
View Full Code Here

                    "not contextualize.");
        }
    }

    public ResourceKey getResourceKey(String id) {
        return new SimpleResourceKey(this.getKeyTypeName(), id);
    }
View Full Code Here

        }

        try {
            final String addr = this.baseURL + this.serviceName;
            final ResourceKey key =
                    new SimpleResourceKey(this.keyTypeName, id);
            return AddressingUtils.createEndpointReference(addr, key);
        } catch (Exception e) {
            throw new CannotTranslateException(e.getMessage(), e);
        }
    }
View Full Code Here

    }

    public static ResourceKey getResourceKey(final EndpointReferenceType epr)
            throws Exception {
        final QName keyQName = Constants_GT4_0.ENSEMBLE_RESOURCE_KEY_QNAME;
        return new SimpleResourceKey(keyQName, getResourceID(epr));
    }
View Full Code Here

    }

    public static ResourceKey getResourceKey(final EndpointReferenceType epr)
            throws Exception {
        final QName keyQName = Constants_GT4_0.RESOURCE_KEY_QNAME;
        return new SimpleResourceKey(keyQName, getResourceID(epr));
    }
View Full Code Here

TOP

Related Classes of org.globus.wsrf.impl.SimpleResourceKey

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.