當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript connection.model.Connection類代碼示例

本文整理匯總了TypeScript中@connections/shared/connection.model.Connection的典型用法代碼示例。如果您正苦於以下問題:TypeScript model.Connection類的具體用法?TypeScript model.Connection怎麽用?TypeScript model.Connection使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了model.Connection類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: beforeEach

  beforeEach(() => {
    fixture = TestBed.createComponent(ConnectionCardComponent);
    component = fixture.componentInstance;

    // Create a connection
    const connection = new Connection();
    connection.setId( "MyConnection" );

    // Set a status on the connection
    const connStatus = ConnectionStatus.createLoadingStatus("MyConnection");
    connection.setStatus(connStatus);

    component.connection = connection;
    component.selectedConnections = [ connection ];

    fixture.detectChanges();
  });
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:17,代碼來源:connection-card.component.spec.ts

示例2: describe

describe("Connection", () => {
  let connection: Connection;

  beforeEach(() => {
    connection = null;
  });

  it("should create", () => {
    console.log("========== [Connection] should create");
    connection = Connection.create(
      {
        "keng__baseUri": "http://das-beetle-studio.192.168.42.154.nip.io/vdb-builder/v1/",
        "keng__id": "PgConn",
        "keng__dataPath": "/tko:komodo/tko:workspace/admin/PgConn",
        "keng__kType": "Connection",
        "keng__hasChildren": true,
        "dv__jndiName": "java:/postgresql-persistent-jq7wz",
        "dv__driverName": "postgresql",
        "dv__type": true,
        "keng__properties": [
          {
            "name": "description",
            "value": "customer db on postgres"
          },
          {
            "name": "serviceCatalogSource",
            "value": "postgresql-persistent-jq7wz"
          }
        ],
        "keng___links": [
          {
            "rel": "self",
            "href": "http://das-beetle-studio.192.168.42.154.nip.io/vdb-builder/v1/workspace/connections/PgConn"
          },
          {
            "rel": "parent",
            "href": "http://das-beetle-studio.192.168.42.154.nip.io/vdb-builder/v1/workspace/connections"
          },
          {
            "rel": "children",
            "href": "http://das-beetle-studio.192.168.42.154.nip.io/vdb-builder/v1/workspace/search%2Fadmin%2FPgConn"
          }
        ]
      }
    );

    expect(connection.getId()).toEqual("PgConn");
    expect(connection.getDescription()).toEqual("customer db on postgres");
    expect(connection.getDriverName()).toEqual("postgresql");
    expect(connection.getJndiName()).toEqual("java:/postgresql-persistent-jq7wz");
    expect(connection.getServiceCatalogSourceName()).toEqual("postgresql-persistent-jq7wz");
    expect(connection.getDataPath()).toEqual("/tko:komodo/tko:workspace/admin/PgConn");
  });

});
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:55,代碼來源:connection.model.spec.ts

示例3: create

 /**
  * @param {Object} json the JSON representation of a ConnectionSummary
  * @returns {ConnectionSummary} the new ConnectionSummary (never null)
  */
 public static create( json: object = {} ): ConnectionSummary {
   const connSummary = new ConnectionSummary();
   for (const field of Object.keys(json)) {
     if (field === "connection") {
       // length of 2 or shorter - no object.  TODO: better way to do this?
       if (JSON.stringify(json[field]).length > 2) {
         connSummary.setConnection(Connection.create(json[field]));
       }
     } else if (field === "status") {
       // length of 2 or shorter - no object.  TODO: better way to do this?
       if (JSON.stringify(json[field]).length > 2) {
         connSummary.setStatus(ConnectionStatus.create(json[field]));
       }
     }
   }
   return connSummary;
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:21,代碼來源:connection-summary.model.ts


注:本文中的@connections/shared/connection.model.Connection類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。