use of com.google.api.ads.admanager.jaxws.v202205.Company in project olca-modules by GreenDelta.
the class ProcessDoc method addDefaultCompany.
private void addDefaultCompany() {
String id = "b35ea934-b41d-4830-b1aa-c7c678270240";
for (Company company : dataSet.masterData.companies) {
if (Objects.equals(id, company.id))
return;
}
Company company = new Company();
company.code = "UKNWN";
company.comment = "This is a default entry as we cannot create persons" + " without company information for the EcoEditor.";
company.id = id;
company.name = "Unknown";
dataSet.masterData.companies.add(company);
}
use of com.google.api.ads.admanager.jaxws.v202205.Company in project universal-db by teamapps-org.
the class DeleteTest method testRemoveReferencesOnEntityDeletion.
@Test
public void testRemoveReferencesOnEntityDeletion() {
Person p = Person.create().setLastName("p");
Company c = Company.create().setName("c").addEmployees(p).save();
assertEquals(p, c.getEmployees().get(0));
assertEquals(1, c.getEmployeesCount());
p.delete();
assertEquals(0, c.getEmployeesCount());
}
use of com.google.api.ads.admanager.jaxws.v202205.Company in project universal-db by teamapps-org.
the class DeleteTest method testDeleteReferences.
@Test
public void testDeleteReferences() {
Person p1 = Person.create().setLastName("p1").save();
Person p2 = Person.create().setLastName("p2").save();
Person p3 = Person.create().setLastName("p3").save();
Person p4 = Person.create().setLastName("p4").save();
Company c1 = Company.create().setName("c1").addEmployees(p1, p2, p3).save();
Company c2 = Company.create().setName("c2").addEmployees(p4).save();
assertTrue("employess of c1", TestBase.compareEntities(c1.getEmployees(), p1, p2, p3));
assertTrue("employess of c2", TestBase.compareEntities(c2.getEmployees(), p4));
assertEquals(p1.getCompany(), c1);
assertEquals(p2.getCompany(), c1);
assertEquals(p3.getCompany(), c1);
assertEquals(p4.getCompany(), c2);
c1.removeAllEmployees().save();
assertTrue("p1 has no c", p1.getCompany() == null);
assertTrue("p2 has no c", p2.getCompany() == null);
assertTrue("p3 has no c", p3.getCompany() == null);
assertTrue("p4 has c", p4.getCompany() != null);
assertEquals("c1 has no employees", 0, c1.getEmployeesCount());
assertTrue("employess of c1", TestBase.compareEntities(c1.getEmployees()));
}
use of com.google.api.ads.admanager.jaxws.v202205.Company in project java-talent by googleapis.
the class JobSearchGetCompany method sampleGetCompany.
/**
* Get Company
*/
public static void sampleGetCompany(String projectId, String tenantId, String companyId) {
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
CompanyName name = CompanyWithTenantName.of(projectId, tenantId, companyId);
GetCompanyRequest request = GetCompanyRequest.newBuilder().setName(name.toString()).build();
Company response = companyServiceClient.getCompany(request);
System.out.printf("Company name: %s\n", response.getName());
System.out.printf("Display name: %s\n", response.getDisplayName());
} catch (Exception exception) {
System.err.println("Failed to create the client due to: " + exception);
}
}
use of com.google.api.ads.admanager.jaxws.v202205.Company in project java-talent by googleapis.
the class JobSearchListCompanies method sampleListCompanies.
/**
* List Companies
*
* @param projectId Your Google Cloud Project ID
* @param tenantId Identifier of the Tenant
*/
public static void sampleListCompanies(String projectId, String tenantId) {
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
TenantOrProjectName parent = TenantName.of(projectId, tenantId);
ListCompaniesRequest request = ListCompaniesRequest.newBuilder().setParent(parent.toString()).build();
for (Company responseItem : companyServiceClient.listCompanies(request).iterateAll()) {
System.out.printf("Company Name: %s\n", responseItem.getName());
System.out.printf("Display Name: %s\n", responseItem.getDisplayName());
System.out.printf("External ID: %s\n", responseItem.getExternalId());
}
} catch (Exception exception) {
System.err.println("Failed to create the client due to: " + exception);
}
}
Aggregations