Fedict / commons-eid

Java library to interact with the Belgian eID card
GNU Lesser General Public License v3.0
12 stars 5 forks source link

Does not work while compile. #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
It gives 15 errors. While compiling.

Source: 
https://code.google.com/p/commons-eid/source/browse/commons-eid-tests/src/test/j
ava/test/integ/be/fedict/commons/eid/client/TestBeIDCardListener.java

sun@sun-M14xR2:/var/tmp/commons-eid/commons-eid-tests/src/test/java/test/integ/b
e/fedict/commons/eid/client$ javac TestBeIDCardListener.java 
TestBeIDCardListener.java:21: package org.apache.commons.logging does not exist
import org.apache.commons.logging.Log;
                                 ^
TestBeIDCardListener.java:22: package org.apache.commons.logging does not exist
import org.apache.commons.logging.LogFactory;
                                 ^
TestBeIDCardListener.java:24: package be.fedict.commons.eid.client does not 
exist
import be.fedict.commons.eid.client.FileType;
                                   ^
TestBeIDCardListener.java:25: package be.fedict.commons.eid.client.event does 
not exist
import be.fedict.commons.eid.client.event.BeIDCardListener;
                                         ^
TestBeIDCardListener.java:27: cannot find symbol
symbol: class BeIDCardListener
public class TestBeIDCardListener implements BeIDCardListener {
                                             ^
TestBeIDCardListener.java:29: cannot find symbol
symbol  : class Log
location: class test.integ.be.fedict.commons.eid.client.TestBeIDCardListener
    private static final Log LOG = LogFactory
                         ^
TestBeIDCardListener.java:33: cannot find symbol
symbol  : class FileType
location: class test.integ.be.fedict.commons.eid.client.TestBeIDCardListener
    public void notifyReadProgress(final FileType fileType, final int offset,
                                         ^
TestBeIDCardListener.java:40: cannot find symbol
symbol  : class FileType
location: class test.integ.be.fedict.commons.eid.client.TestBeIDCardListener
    public void notifySigningBegin(final FileType keyType) {
                                         ^
TestBeIDCardListener.java:48: cannot find symbol
symbol  : class FileType
location: class test.integ.be.fedict.commons.eid.client.TestBeIDCardListener
    public void notifySigningEnd(final FileType keyType) {
                                       ^
TestBeIDCardListener.java:29: cannot find symbol
symbol  : variable LogFactory
location: class test.integ.be.fedict.commons.eid.client.TestBeIDCardListener
    private static final Log LOG = LogFactory
                                   ^
TestBeIDCardListener.java:32: method does not override or implement a method 
from a supertype
    @Override
    ^
TestBeIDCardListener.java:42: cannot find symbol
symbol  : variable FileType
location: class test.integ.be.fedict.commons.eid.client.TestBeIDCardListener
                + (keyType == FileType.AuthentificationCertificate
                              ^
TestBeIDCardListener.java:39: method does not override or implement a method 
from a supertype
    @Override
    ^
TestBeIDCardListener.java:50: cannot find symbol
symbol  : variable FileType
location: class test.integ.be.fedict.commons.eid.client.TestBeIDCardListener
                + (keyType == FileType.AuthentificationCertificate
                              ^
TestBeIDCardListener.java:47: method does not override or implement a method 
from a supertype
    @Override
    ^
15 errors

Original issue reported on code.google.com by shamun.toha@gmail.com on 28 Apr 2013 at 9:57

GoogleCodeExporter commented 9 years ago
mvn clean install

See also: http://code.google.com/p/commons-eid/source/browse/README.txt

Original comment by frank.co...@gmail.com on 29 Apr 2013 at 2:57