wallpaper from interfacelift
desktop enhancements from HUD.Vision and Rainmaker
you need a brain that works like a sponge to absorb all the kewl stuffs about java
/**
* JSF-Spring Integration Training
* Copyright MyCompany 2008
*/
package com.training;
import junit.framework.TestCase;
import com.thoughtworks.selenium.DefaultSelenium;
/**
* A Simple Unit Test using Selenium
*
* @author kits
*/
public class SimplePageTest extends TestCase {
protected DefaultSelenium createSeleniumClient(String url) throws Exception {
return new DefaultSelenium("localhost", 4444, "*firefox", url);
}
public void testSomethingSimple() throws Exception {
String url = "http://localhost:8010/clocator/faces/pages/index.jsp";
DefaultSelenium selenium = createSeleniumClient(url);
selenium.start();
selenium.isTextPresent("Hello JSF!!!");
selenium.stop();
}
}
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\>imp
Import: Release 10.2.0.1.0 - Production on Fri Aug 1 16:48:43 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Username: pde
Password:
IMP-00058: ORACLE error 12560 encountered
ORA-12560: TNS:protocol adapter error
IMP-00000: Import terminated unsuccessfully
C:\>
C:\docume~1\consul~1\.m2\repository
package com.walgreens.sysconf.dao;
import java.util.List;
import com.walgreens.sysconf.domain.AbstractDomain;
import com.walgreens.sysconf.domain.AppEvent;
/**
* Standard DAO Interface for AppEvent Domain Object
*
* @author Edwin Quita
* @version 1.0
*/
public interface AppEventDAO {
/**
* Inserts an AppEvent Record
*
* @param ad AppEvent Domain Object
*/
public void insert(AbstractDomain ad);
/**
* Updates an AppEvent Record
*
* @param ad AppEvent Domain Object
*/
public void update(AbstractDomain ad);
/**
* Deletes an AppEvent Record
*
* @param id Record Id
*/
public void delete(long id);
/**
* Retrieves an AppEvent Record
*
* @param id Record Id
* @return AbstractDomain AppEvent domain object
*/
public AbstractDomain findById(long id);
/**
* Retrieves a List of AppEvent Records
*
* @return List A List of AppEvent domain objects
*/
public List<AppEvent> findAll();
/**
* Retrieves a List of AppEvent Records using AUTH_ID as filter
*
* @return List A List of AppEvent domain objects
*/
public List<AppEvent> findAllByAuthId(String authId);
}
org.apache.maven.plugins
maven-source-plugin
attach-sources
jar