@atomist/cortex
Version:
Atomist Cortex model TypeScript typings
137 lines (120 loc) • 3.61 kB
text/typescript
/*
* Copyright 2015-2017 Atomist Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as gitHubProviderApi from "../GitHubProvider";
export { GitHubProvider };
/**
* Type GitHubProvider
* Generated class exposing Atomist Cortex.
* Fluent builder style class for use in testing and query by example.
*/
class GitHubProvider implements gitHubProviderApi.GitHubProvider {
private _apiUrl: string;
private _gitUrl: string;
private _id: string;
private _url: string;
private _nodeName = "GitHubProvider";
private _nodeTags = [ "GitHubProvider", "-dynamic" ];
/**
* Implementation of GraphNode interface method.
* For infrastructure, not user use
*/
public nodeName(): string {
return this._nodeName;
}
/**
* Implementation of GraphNode interface method.
* For infrastructure, not user use
*/
public nodeTags(): string[] {
return this._nodeTags;
}
/**
* apiUrl
*
* @property {string} apiUrl
*/
get apiUrl(): string {
if (this._apiUrl === undefined) {
throw new Error(`Please use the relevant builder method to set property [apiUrl] on stub ` +
`[GitHubProvider] before accessing it. It's probably called [withApiUrl]`);
}
return this._apiUrl;
}
/**
* Fluent builder method to set the apiUrl property
*/
public withApiUrl(apiUrl_: string) {
this._apiUrl = apiUrl_;
return this;
}
/**
* gitUrl
*
* @property {string} gitUrl
*/
get gitUrl(): string {
if (this._gitUrl === undefined) {
throw new Error(`Please use the relevant builder method to set property [gitUrl] on stub ` +
`[GitHubProvider] before accessing it. It's probably called [withGitUrl]`);
}
return this._gitUrl;
}
/**
* Fluent builder method to set the gitUrl property
*/
public withGitUrl(gitUrl_: string) {
this._gitUrl = gitUrl_;
return this;
}
/**
* id
*
* @property {string} id
*/
get id(): string {
if (this._id === undefined) {
throw new Error(`Please use the relevant builder method to set property [id] on stub ` +
`[GitHubProvider] before accessing it. It's probably called [withId]`);
}
return this._id;
}
/**
* Fluent builder method to set the id property
*/
public withId(id_: string) {
this._id = id_;
return this;
}
/**
* url
*
* @property {string} url
*/
get url(): string {
if (this._url === undefined) {
throw new Error(`Please use the relevant builder method to set property [url] on stub ` +
`[GitHubProvider] before accessing it. It's probably called [withUrl]`);
}
return this._url;
}
/**
* Fluent builder method to set the url property
*/
public withUrl(url_: string) {
this._url = url_;
return this;
}
}