本文整理汇总了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;未经允许,请勿转载。 |
请发表评论