Examples of Endpoint


Examples of org.neo4j.gis.spatial.pipes.processing.EndPoint

   
    /**
     * @see EndPoint
     */
    public GeoPipeline toEndPoint() {
      return addPipe(new EndPoint(layer.getGeometryFactory()));
    }
View Full Code Here

Examples of org.opensaml.saml2.metadata.Endpoint

            idService);
    EndpointGenerator endpointGenerator = new EndpointGenerator();

    final String target = openSAMLContext.getIdpUrl();

    Endpoint endpoint = endpointGenerator.generateEndpoint(
            SingleSignOnService.DEFAULT_ELEMENT_NAME, target, openSAMLContext.assertionConsumerUri());

    AuthnRequest authnRequest = authnRequestGenerator.generateAuthnRequest(target, openSAMLContext.assertionConsumerUri());

    Client client = getClientByRequest(authState);
View Full Code Here

Examples of org.openstreetmap.osmosis.plugin.elasticsearch.utils.Endpoint

  @Before
  public void setUp() throws Exception {
    clientMocked = mock(Client.class);
    indexAdminServiceMocked = mock(IndexAdminService.class);
    entityDaoMocked = mock(EntityDao.class);
    endpoint = new Endpoint(clientMocked, indexAdminServiceMocked, entityDaoMocked);
    indexBuilders = new HashSet<AbstractIndexBuilder>();
    params = new Parameters.Builder().loadResource("plugin.properties")
        .addParameter(Parameters.CONFIG_QUEUE_SIZE, "1")
        .addParameter(Parameters.CONFIG_NODE_BULK_SIZE, "1")
        .addParameter(Parameters.CONFIG_WAY_BULK_SIZE, "1")
View Full Code Here

Examples of org.syrup.helpers.EndPoint

    public void set_in_1(Data data, SyrupConnection con) throws Exception
    {
        try
        {
            EndPoint p = sqlImpl().queryFunctions().readOutEndPoint("1", false, con);
            if (p.data != null)
            {
                throw new Exception("in1 is filled");
            }
            sqlImpl().updateFunctions().updateOutLink("1", false, data, con);
View Full Code Here

Examples of org.talend.esb.servicelocator.client.Endpoint

    public static class simpleEndpointMatcher implements IArgumentMatcher {

        @Override
        public boolean matches(Object argument) {
            if (argument != null && argument instanceof Endpoint) {
                Endpoint result = (Endpoint) argument;
                if (!ENDPOINTURL.equals(result.getAddress()))
                    return false;
                if (!SERVICE_NAME.equals(result.getServiceName()))
                    return false;
            }
            return true;
        }
View Full Code Here

Examples of org.wso2.carbon.bam.stub.statquery.Endpoint

    }

    public String getEndpoints(int serverID) {

        Endpoint endpoints[] = null;
        try {
            if (bamDSClient != null) {
                endpoints = bamDSClient.getEndpoints(serverID);
            }
        } catch (RemoteException e) {
View Full Code Here

Examples of org.wso2.carbon.governance.api.endpoints.dataobjects.Endpoint

     * @return the artifact added.
     * @throws GovernanceException if the operation failed.
     */
    public Endpoint newEndpoint(String url) throws GovernanceException {
        String endpointId = UUID.randomUUID().toString();
        Endpoint endpoint = new Endpoint(url, endpointId);
        endpoint.associateRegistry(registry);
        return endpoint;
    }
View Full Code Here

Examples of pl.tecna.gwt.connectors.client.elements.EndPoint

      @Override
      public void onDragStart(DragStartEvent event) {
        endPointDragging = true;
        if (event != null) {
          EndPoint ep = (EndPoint) event.getSource();
          ep.connector.select();
        }

        int startX =
            Diagram.this.boundaryPanel.getWidgetLeft(event.getContext().draggable)
                - Diagram.this.boundaryPanel.getAbsoluteLeft();
        int startY =
            Diagram.this.boundaryPanel.getWidgetTop(event.getContext().draggable)
                - Diagram.this.boundaryPanel.getAbsoluteTop();
        Diagram.this.onElementDrag(new ElementDragEvent(event.getContext().draggable, startX, startY,
            ElementDragEvent.DragEventType.DRAG_START));
      }

      @Override
      public void onDragEnd(DragEndEvent event) {

        endPointDragging = false;
        EndPoint endPoint = (EndPoint) event.getSource();
        endPoint.connector.fixEndSectionDirection(endPoint);
        endPoint.connector.drawSections(endPoint.connector.getCorners());

        try {
          endPoint.connector.cornerPoints =
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.