use of org.eclipse.che.api.ssh.server.model.impl.SshPairImpl in project che by eclipse.
the class JpaSshDao method doRemove.
@Transactional
protected void doRemove(String owner, String service, String name) throws NotFoundException {
EntityManager manager = managerProvider.get();
SshPairImpl entity = manager.find(SshPairImpl.class, new SshPairPrimaryKey(owner, service, name));
if (entity == null) {
throw new NotFoundException(format("Ssh pair with service '%s' and name '%s' was not found.", service, name));
}
manager.remove(entity);
manager.flush();
}
use of org.eclipse.che.api.ssh.server.model.impl.SshPairImpl in project che by eclipse.
the class SshDaoTest method shouldCreateSshKeyPair.
@Test(dependsOnMethods = "shouldGetSshPairByNameOwnerAndService")
public void shouldCreateSshKeyPair() throws Exception {
SshPairImpl pair = new SshPairImpl("owner1", "service", "name", "publicKey", "privateKey");
sshDao.create(pair);
assertEquals(sshDao.get("owner1", "service", "name"), pair);
}
use of org.eclipse.che.api.ssh.server.model.impl.SshPairImpl in project che by eclipse.
the class SshDaoTest method shouldThrowNotFoundExceptionIfPairWithSuchNameOwnerAndServiceDoesNotExist.
@Test(expectedExceptions = NotFoundException.class)
public void shouldThrowNotFoundExceptionIfPairWithSuchNameOwnerAndServiceDoesNotExist() throws Exception {
SshPairImpl sshPair = pairs[0];
sshDao.get(sshPair.getService(), sshPair.getService(), sshPair.getName());
}
use of org.eclipse.che.api.ssh.server.model.impl.SshPairImpl in project che by eclipse.
the class PostgreSqlTckModule method configure.
@Override
protected void configure() {
final String dbUrl = System.getProperty("jdbc.url");
final String dbUser = System.getProperty("jdbc.user");
final String dbPassword = System.getProperty("jdbc.password");
waitConnectionIsEstablished(dbUrl, dbUser, dbPassword);
// jpa
install(new PersistTestModuleBuilder().setDriver(Driver.class).setUrl(dbUrl).setUser(dbUser).setPassword(dbPassword).setExceptionHandler(PostgreSqlExceptionHandler.class).addEntityClasses(AccountImpl.class, UserImpl.class, ProfileImpl.class, PreferenceEntity.class, WorkspaceImpl.class, WorkspaceConfigImpl.class, ProjectConfigImpl.class, EnvironmentImpl.class, EnvironmentRecipeImpl.class, ExtendedMachineImpl.class, SourceStorageImpl.class, ServerConf2Impl.class, StackImpl.class, CommandImpl.class, SnapshotImpl.class, RecipeImpl.class, SshPairImpl.class).addEntityClass("org.eclipse.che.api.workspace.server.model.impl.ProjectConfigImpl$Attribute").build());
bind(TckResourcesCleaner.class).to(JpaCleaner.class);
// db initialization
bind(DBInitializer.class).asEagerSingleton();
final PGSimpleDataSource dataSource = new PGSimpleDataSource();
dataSource.setUser(dbUser);
dataSource.setPassword(dbPassword);
dataSource.setUrl(dbUrl);
bind(SchemaInitializer.class).toInstance(new FlywaySchemaInitializer(dataSource, "che-schema"));
// account
bind(AccountDao.class).to(JpaAccountDao.class);
bind(new TypeLiteral<TckRepository<AccountImpl>>() {
}).toInstance(new JpaTckRepository<>(AccountImpl.class));
// user
bind(UserDao.class).to(JpaUserDao.class);
bind(ProfileDao.class).to(JpaProfileDao.class);
bind(PreferenceDao.class).to(JpaPreferenceDao.class);
bind(new TypeLiteral<TckRepository<UserImpl>>() {
}).to(UserRepo.class);
bind(new TypeLiteral<TckRepository<Pair<String, Map<String, String>>>>() {
}).to(PreferencesRepo.class);
bind(new TypeLiteral<TckRepository<ProfileImpl>>() {
}).toInstance(new JpaTckRepository<>(ProfileImpl.class));
bind(PasswordEncryptor.class).to(SHA512PasswordEncryptor.class);
// machine
bind(RecipeDao.class).to(JpaRecipeDao.class);
bind(SnapshotDao.class).to(JpaSnapshotDao.class);
bind(new TypeLiteral<TckRepository<RecipeImpl>>() {
}).toInstance(new JpaTckRepository<>(RecipeImpl.class));
bind(new TypeLiteral<TckRepository<SnapshotImpl>>() {
}).toInstance(new JpaTckRepository<>(SnapshotImpl.class));
bind(new TypeLiteral<TckRepository<Workspace>>() {
}).toInstance(new WorkspaceRepoForSnapshots());
// ssh
bind(SshDao.class).to(JpaSshDao.class);
bind(new TypeLiteral<TckRepository<SshPairImpl>>() {
}).toInstance(new JpaTckRepository<>(SshPairImpl.class));
// workspace
bind(WorkspaceDao.class).to(JpaWorkspaceDao.class);
bind(StackDao.class).to(JpaStackDao.class);
bind(new TypeLiteral<TckRepository<WorkspaceImpl>>() {
}).toInstance(new WorkspaceRepository());
bind(new TypeLiteral<TckRepository<StackImpl>>() {
}).toInstance(new StackRepository());
}
use of org.eclipse.che.api.ssh.server.model.impl.SshPairImpl in project che by eclipse.
the class JpaSshDao method get.
@Override
@Transactional
public List<SshPairImpl> get(String owner, String service) throws ServerException {
requireNonNull(owner);
requireNonNull(service);
try {
return managerProvider.get().createNamedQuery("SshKeyPair.getByOwnerAndService", SshPairImpl.class).setParameter("owner", owner).setParameter("service", service).getResultList();
} catch (RuntimeException e) {
throw new ServerException(e.getLocalizedMessage(), e);
}
}
Aggregations