EmailVerifier Class how to work it?

Hi there,
I am trying to use the EmailVerifier class that I found whilst researching but I have no clue how to get it to work or where to get it from.
This is what it says on the class description page, (also does anyone know what the path at the bottom is?)
Class EmailVerifier
java.lang.Object
|
--com.cfdev.mail.verify.EmailVerifier
Thank you!
Raony

Here in this link
http://www.zrinity.com/email/verify/docs/api/com/cfdev/mail/verify/EmailVerifier.html

Similar Messages

  • Supporting jar for emailverifier class

    i am posting my first message to this forums. where can i get supporting jar for
    emailverifier class. could anyone help me please.
    thanks in advance.
    senthil

    Thank you. I know the basic usage of ant - compiling the source, running the program, creating single jar from specified classes, ... But I have no idea how to make one jar file from each class... Is there somebody more experienced? Every advice is very welcomed.
    Unfortunately, I have to hand over my project at monday and I have lot of work on other parts of the program...

  • I pad 2 updated to iOS 6.1.3 and now wifi is greyed out. Apple support engineers say replace but my warranty exited 09/12. Funny how it worked perfectly fine before the update.

    I just updated to6.1.3 and now my wifi button is greyed out. Apple support said it is a hardware issue. Funny how it worked just fine on the previous iOS. Now apple wants me to buy a replace not because my warranty expired 09/12. Seems to me like ios6.1.3 was an update to sell more products. Tried all suggested fixes with no success. With all the noted issues with ios6 there may be another class action lawsuit coming. Apple tech senior advisor unwilling to help. First advisor told me just buy a new I pad. Second advisor wants me to pay for a replacement. Can someone explain to me how an apple approved software upgrade that damaged my i pad is classified as my fault. I've seen some shady selling techniques but this one takes the cake in my book. Anyone have the contact information to higher up executives in apple for me to speak with about my issues?

    Have you check the following?
    Verify that airplane mode is off by tapping Settings > Airplane Mode.
    Reset the network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings, including Bluetooth pairing records, Wi-Fi passwords, VPN, and APN settings
    Ensure that your device is using the latest software.
    If your issue is still unresolved, perform a software restore in iTune

  • How to work with EEWB tool in CRM and how to assign it to PCUI

    Hi Friends,
    Can any body will suggest me how to work with EEWB tool in CRM to add new fields ,i need to attach the fields to a GUI screen and same to PCUI also,
    And how to attach a search help for those fields,is the tool will automatically will create the search helps or it is similar as we do in abap,
    So can any body suggest me to get a material on this ,
    Thaking you
    Regards
    Raghavendra Prasad

    Prasad
    Following are the steps involved in general :
    1. Select the filter Worklist and enter your name in the input field of the object list selection. Press the enter key. Your object list is displayed.
    2. Place your cursor on the highest node(PROJECT BY XXXXXX). Select Create project from the context menu by right-clicking on it. You see the dialog box Create project.
    3. Enter a project name, description, packages, and namespaces for each system used. Leave the dialog box by pressing the enter key.
    Specify transport requests. The Project is created and appears in the object list.
    4. Place your cursor on the new project in the object list and select Create extension in the context menu. You see the dialog box Create extension.
    5. Enter a name and description. Define a Business Object and extension type. Press the enter key.The extension is created and appears in the object list below the project.
    6. Place your cursor on the new extension in the object list and select Call wizard in the context menu. The wizard for the extension action starts automatically.
    7. Fill in the input fields following the notes on screen and end the wizard by clicking on Complete.The extension tasks have been created and appear in the object list.
    Project and extension are created !
    Also take care that you have the Transport Requests and Save the Project and Extensions against a Development Class !
    In general , EEW will automatically puts the fields on the Screen. We donot want to worry abt that !
    The generated BADIs can be implemented to do some Checks(for example) !
    I hope this helps !
    Thanks
    <b>Allot points if this helps !</b>

  • Trying to understand how beans work.

    I can't seem to figure out how beans work. Or more specifically how to target different parts of a bean. I think not knowing the terminology is a big part of this confusion too.
    For instance. I have a jsp file and a bean. the jsp has a form input that submits to itself. the bean gets the info that was typed in and displays is in the <%= etcetc %> tag. Now, what im trying to do is also submit that value to my mysql db. This has created numerous problems for me. For one, i don't really know how to check if it's working (other than actually looking at the DB table). The other problem is how do i target that part of the bean to tell it to do that function (again, the terminolgy eludes me).
    I'll post all of the code. There is a good chance that the DB code wont work. I'm really just hoping someone can explain to me
    how i call the DB function from the JSP file.
    I mean, is this even possible? Or do i need seperate beans for everything?? It seems kind of silly to not be able to do this.
    ok, so here is the code.
    JSP:
    <!-- JSP Directives -->
    <%@ page errorPage="myError.jsp?from=hello.jsp"%>
    <jsp:useBean id="simpleBean" scope="page" class="jspbook.ch3.simpleBean"/>
    <!-- Set bean properties -->
    <jsp:setProperty name="simpleBean" property="fname"/>
    <html>
    <head>
         <title>Hello</title>
    </head>
    <body>
    <center>
         <b><%= simpleBean.welcomeMsg() %></b>
    </center>
    <table align="center">
         <tr>
              <td>
                   <form name="sdfsdf" action="test.jsp" method="post">
                   <input type="text" name="fname" value="">
                   <input type="submit" name="submit" value="submit">
                   </form>
              </td>
         </tr>
    </table>
    </body>
    </html>and here is the bean
    package jspbook.ch3;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    public class simpleBean implements java.io.Serializable {
       private String emplid;
       private Connection con = null;
       private ResultSet rs = null;
       private PreparedStatement st = null;
       /* Member Variables */
       private String lname;
       private String fname;
      public simpleBean()
            try
              Class.forName("org.gjt.mm.mysql.Driver");
              Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/stm?user=root&password=");
        catch(Exception e)
              System.out.println(e.getMessage());
          /* Initialize bean properties */
        setLname("");
        setFname("");
      /* Accessor Methods */
      public String getLname() {
        return lname;
      public void setLname(String _lname) {
        lname = _lname;
      public String getFname() {
        return fname;
      public void setFname(String _fname) {
        fname = _fname;
      /* Display personalized message */
      public String welcomeMsg() {
        return "Hello " + fname + " " + lname +
          ", welcome to the wonderful world of JavaBeans!";
          public void insert()
           try
                String s1="insert into commstream (commTitle) values('"+fname+"')";
                st = con.prepareStatement(s1);
                st.executeUpdate();
                st.clearParameters();
                st.close();   
           catch(Exception m)
    }So there it is. If someone can explain the fundamentals to me, that would be great. What would also be great is if someone can make the above code work :)
    I've checked online tuts/specs on this, but to be honest im just not grasping it.

    iPhoto is a relational database program
    In the strongly recommended managed library (you have chosen to ignore this recommendation and use a referenced library) imported photos are copied to the iPhoto library and stored in the originals folder, a thumbnail jPEG is created and places in the data folder and when any modification is made (including autorotation) a modified version of the photo is created and placed in the modified folder. iPhoto updates its database entries to reflect everything it does.
    It is critical that you do not make any modifications of any sort to the content or structure of the iPhoto library - doing so is likely to corrupt the library and cause you to lose data.
    When you use the referenced mode which you are doing (and which is not recommended) you are taking total responsibility for the original photos which included not moving or modifying them while iPhoto is referencing them
    Unfortunately, all pictures from a certain import has duplicated in iPhoto.... so I "moved to trash" all pictures from that import
    Did you do this with the iPhoto trash? or did you use the finder to modify the contents of the iPhoto library.
    If I "move to trash", I assumed it got rid of whatever index (and preview cache) to that particular JPEG. I was actually surprised it did not delete the actual JPEG but I'm ok with that.
    again - iPhoto trash or finder trash. If you move a photo to the iPhoto trash and empty it all traces of that photo in the iPhoto library will be removed - nothing will be done to any file outside of the iPhoto library -- ever
    LN

  • How to Work with Composite Primary Key

    Hi All,
    I'm working with Toplink JPA. Here I have A problem with inserting into database table which have composite Primary Key.
    What I'm doing is, I have two tables. to maintain many to many relation between these two tables I created another intermediate table which consists of foreign Keys (reference) of above two tables.
    Now these two foreign Keys in the Intermediate table made as composite Primary Keys.
    When I'm trying to the data in the Intermediate table I'm getting the foreign Keys values are null..
    could anyone suggest me how to work with composite Primary Keys
    Thanks,
    Satish

    I have the same problem, I have 3 tables with a join table joining them all. I have created an intermediate table entity. When I go to create a an entry, it says that I cannot enter null into "ID". Here is the SQl toplink generates:
    INSERT INTO Z_AUTH_USER_AUTHORIZATION (CONTEXT_ID, AUTHORIZATION_ID, USER_ID) VALUES (?, ?, ?)
    bind => [null, null, null]
    Here are the classes:
    -----------------------Join Table-----------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_USER_AUTHORIZATION")
    public class AuthUserAuthorization implements Serializable{
    @EmbeddedId
    private AuthUserAuthorizationPK compId;
    // bi-directional many-to-one association to AuthAuthorization
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "AUTHORIZATION_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthAuthorization authAuthorization;
    // bi-directional many-to-one association to AuthContext
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "CONTEXT_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthContext authContext;
    // bi-directional many-to-one association to AuthUser
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "USER_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthUser authUser;
    ---------------------------------------User table--------------------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_USER")
    public class AuthUser implements Serializable, IUser{
    @Id()
    @SequenceGenerator(name = "AUTH_USER_ID_SEQ", sequenceName = "Z_AUTH_USER_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_USER_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 10)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authUser", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    -----------------------------------Context table-----------------------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_CONTEXT")
    public class AuthContext implements Serializable, IContext{
    @Id()
    @SequenceGenerator(name = "AUTH_CONTEXT_ID_SEQ", sequenceName = "Z_AUTH_CONTEXT_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_CONTEXT_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 8)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authContext", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    ----------------------------Authorization table-------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_AUTHORIZATION")
    public class AuthAuthorization implements Serializable, IAuthorization{
    @Id()
    @SequenceGenerator(name = "AUTH_AUTHORIZATION_ID_SEQ", sequenceName = "Z_AUTH_AUTHORIZATION_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_AUTHORIZATION_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 8)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authAuthorization", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    I have tried to create the new entity several ways. I have tried to create one with the default constructor then set this entity on each of the other entities, I have also tried to pass in the entities to the join entity and set them there, but this doesn't work. Any help would be very appreciated!
    Thanks,
    Bill

  • Help on JTAPI -how to work with it

    hi , i want to start working with Jtapi
    i downloaded the class files for jtapi -it's a zip file containg classes
    how can i start working with it , where do i need to extarct it !!
    do i need a certain hardware !!
    and how do i compile new application i create
    please replay me asap , ir ealy need this info !!!
    thanks !!!

    sir, my project is to use fax modem and JTAPI to send and receive fax. now i am trying to dial the fax number. sir i am new to JTAPI. so i have downloaded the Outcall program in JTAPI. sir i have to execute it, so please kindly suggest me...
    since every jtapi need an implementation i have downloaded J323 engine. i have set the class path for j323.jar.
    what else i should download....
    now i have
    1. downloaded jtapi 1.2
    2. set the classpath of jtapi.jar
    3. download J323 and only set the class path of J323.jar.
    (is it necessary to follow the instructions in config.html)
    please suggest me the next step to follow, i have to execute it(Outcall)
    sir, in JTAPI how to get the Provider. sir if please kindly suggest the method to execute the program step by step..and what are the hardwares/softwares i am missing . i am using win95.
    sir i will be very thankful to u sir.
    please reply me.....
    mail id : [email protected]

  • Can u explain me how to work with OOPs ABAP

    Hi,
    Can u explain me how to work with OOPS Abap,  If possible pls send me some sample programs regarding OOps concept used in Realtime.
    Thanks.

    hii,
    Please check this online document (starting page 1291).
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf
    Also check this links as well.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    http://www.futureobjects.de/content/intro_oo_e.html
    http://www.sap-img.com/abap/business-add-in-you-need-to-understand-abap-oo-interface-concept.htm
    /people/ravikumar.allampallam/blog/2005/02/11/abap-oo-in-action
    What is Object Orientation?
    Object orientation (OO), or to be more precise, object-oriented programming, is a problem-solving method in which the software solution reflects objects in the real world.
    A comprehensive introduction to object orientation as a whole would go far beyond the limits of this introduction to ABAP Objects. This documentation introduces a selection of terms that are used universally in object orientation and also occur in ABAP Objects. In subsequent sections, it goes on to discuss in more detail how these terms are used in ABAP Objects. The end of this section contains a list of further reading, with a selection of titles about object orientation.
    Objects
    An object is a section of source code that contains data and provides services. The data forms the attributes of the object. The services are known as methods (also known as operations or functions). Typically, methods operate on private data (the attributes, or state of the object), which is only visible to the methods of the object. Thus the attributes of an object cannot be changed directly by the user, but only by the methods of the object. This guarantees the internal consistency of the object.
    Classes
    Classes describe objects. From a technical point of view, objects are runtime instances of a class. In theory, you can create any number of objects based on a single class. Each instance (object) of a class has a unique identity and its own set of values for its attributes.
    Object References
    In a program, you identify and address objects using unique object references. Object references allow you to access the attributes and methods of an object.
    In object-oriented programming, objects usually have the following properties:
    Encapsulation
    Objects restrict the visibility of their resources (attributes and methods) to other users. Every object has an interface, which determines how other objects can interact with it. The implementation of the object is encapsulated, that is, invisible outside the object itself.
    Polymorphism
    Identical (identically-named) methods behave differently in different classes. Object-oriented programming contains constructions called interfaces. They enable you to address methods with the same name in different objects. Although the form of address is always the same, the implementation of the method is specific to a particular class.
    Inheritance
    You can use an existing class to derive a new class. Derived classes inherit the data and methods of the superclass. However, they can overwrite existing methods, and also add new ones.
    Uses of Object Orientation
    Below are some of the advantages of object-oriented programming:
    Complex software systems become easier to understand, since object-oriented structuring provides a closer representation of reality than other programming techniques.
    In a well-designed object-oriented system, it should be possible to implement changes at class level, without having to make alterations at other points in the system. This reduces the overall amount of maintenance required.
    Through polymorphism and inheritance, object-oriented programming allows you to reuse individual components.
    In an object-oriented system, the amount of work involved in revising and maintaining the system is reduced, since many problems can be detected and corrected in the design phase.
    Achieving these goals requires:
    Object-oriented programming languages
    Object-oriented programming techniques do not necessarily depend on object-oriented programming languages. However, the efficiency of object-oriented programming depends directly on how object-oriented language techniques are implemented in the system kernel.
    Object-oriented tools
    Object-oriented tools allow you to create object-oriented programs in object-oriented languages. They allow you to model and store development objects and the relationships between them.
    Object-oriented modeling
    The object-orientation modeling of a software system is the most important, most time-consuming, and most difficult requirement for attaining the above goals. Object-oriented design involves more than just object-oriented programming, and provides logical advantages that are independent of the actual implementation
    http://www.sapgenie.com/abap/OO/index.htm
    http://www.geocities.com/victorav15/sapr3/abap_ood.html
    http://www.brabandt.de/html/abap_oo.html
    Check this cool weblog:
    /people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
    /people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
    /people/sap.user72/blog/2005/05/10/a-small-tip-for-the-beginners-in-oo-abap
    /people/ravikumar.allampallam/blog/2005/02/11/abap-oo-in-action
    /people/thomas.jung3/blog/2005/09/08/oo-abap-dynpro-programming
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b6254f411d194a60000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm
    http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://www.allsaplinks.com/
    http://www.sap-img.com/
    http://www.sapgenie.com/
    http://help.sap.com
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://www.sapgenie.com/abap/controls/index.htm
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    these links
    http://help.sap.com/saphelp_47x200/helpdata/en/ce/b518b6513611d194a50000e8353423/content.htm
    For funtion module to class
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5954f411d194a60000e8353423/content.htm
    for classes
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5c54f411d194a60000e8353423/content.htm
    for methods
    http://help.sap.com/saphelp_47x200/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm
    for inheritance
    http://help.sap.com/saphelp_47x200/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm
    for interfaces
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b6254f411d194a60000e8353423/content.htm
    For basic stuff......
    abap oops
    http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt
    http://esnips.com/doc/448e8302-68b1-4046-9fef-8fa8808caee0/abap-objects-by-helen.pdf
    http://esnips.com/doc/39fdc647-1aed-4b40-a476-4d3042b6ec28/class_builder.ppt
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/frameset.htm
    ABAP Business Development and Service Provisioning/ABAP Objects
    General information
    What is Object Orientation?
    some blogs
    A small tip for the beginners in OO ABAP
    Object Oriented ABAP (OO-ABAP)
    and others wiki OO Abap
    cheers,
    sharad
    Edited by: sharad narayan on Apr 29, 2008 12:19 PM

  • How it works please help me !!!

    Hi guy�s,
    I try to understand how is java working
    I�m new in the world of java !!!!
    Where I can find for example � java.applet.applet of java.awt.grpaphics� on my local disk .
    For instance :
    import java.awt.Graphics;
    import java.applet.Applet;
    public class Hallo extends Applet
    public void paint (Graphics g)
    g.drawString(�Hallo!�, 20, 20);
    Can somebody explain to me how it works !
    I will just understand who everything works.
    I'm using windows OS
    Thank you in advance
    Idriz
    p.s
    I�m sorry for my English language . it is not very well but I�m working on it !

    Sorry but i stil don't know where i can find these file's.
    Can i find thes files on my disk?
    Where are they ?
    I have a couple books on my table about Java but this kind of stof i can not find in these books. that's why i posted this question on this forum.
    Anyway thank you for your answer !
    idriz

  • How OAMessageLovInputHelper works?

    Please,
    Can anybody put some light about the OAMessageLovInputHelper class and the similars?
    I get this from the log:
    ++[49|http://forums.oracle.com/forums/]:EVENT:[http://fnd.framework.webui.OAFormValueHelper|http://fnd.framework.webui.oaformvaluehelper/]:OAF LOG: Event : Get Attribute Value, in: oracle.apps.fnd.framework.webui.OAFormValueHelper: View:AllocationsHeaderVO ,Attribute:ProjectId , Return Value without datatype conversion :1143++
    ++[49|http://forums.oracle.com/forums/]:EVENT:[http://fnd.framework.webui.OAMessageLovInputHelper|http://fnd.framework.webui.oamessagelovinputhelper/]:OAF LOG: Event : Get Attribute Value, in: oracle.apps.fnd.framework.webui.OAMessageLovInputHelper: View:AllocationsHeaderVO ,Attribute:ProjectNumber , Return Value without datatype conversion :null++
    ++[49|http://forums.oracle.com/forums/]:EVENT:[http://fnd.framework.webui.OAMessageLovInputHelper|http://fnd.framework.webui.oamessagelovinputhelper/]:OAF LOG: Event : Set Attribute Value, in: oracle.apps.fnd.framework.webui.OAMessageLovInputHelper: OldValue:null ,New Value:103
    I would like to know how it works with an example and where I can call this code to get the same data (I would like to know where the data is set in the OAMessageLovInput field).
    I've seen the following in the log this lines, so it's called from the procesform data (but I do not know how to get the same):
    [46]:EVENT:[everis.oracle.apps.ap.oie.framework.webui.xxOIEPageCO]:OAF LOG: Event : Call Process Form Data, in: everis.oracle.apps.ap.oie.framework.webui.xxOIEPageCO: Entering Process Form Data
    [46]:EVENT:[everis.oracle.apps.ap.oie.entry.accounting.webui.xxExpenseAllocationsPageCO]:OAF LOG: Event : Call Process Form Data, in: everis.oracle.apps.ap.oie.entry.accounting.webui.xxExpenseAllocationsPageCO: Entering Process Form Data
    [46]:EVENT:[everis.oracle.apps.ap.oie.entry.accounting.webui.xxAllocationsHGridCO]:OAF LOG: Event : Call Process Form Data, in: everis.oracle.apps.ap.oie.entry.accounting.webui.xxAllocationsHGridCO: Entering Process Form Data
    [47]:EVENT:[fnd.framework.webui.OAFormValueHelper]:OAF LOG: Event : Get Attribute Value, in: oracle.apps.fnd.framework.webui.OAFormValueHelper: View:null ,Attribute:_p , Return Value without datatype conversion :null
    Many thanks for your help.
    Juanje

    Currently not many companies have updated their 3rd party apps to integrate with PB... basically it's a app that functions similarly to an e-wallet and for example if you have an upcoming flight and have an electronic boarding pass it will/can be stored in PB for use when you need to scan it to enter the airport areas...
    Currently only a few companies support it with more to follow...
    Fandango Movies — Times & Tickets
    Live Nation
    Lufthansa
    MLB.com At Bat
    Sephora to Go
    Ticketmaster
    Walgreens
    Starbucks (by end of Sep)

  • How PriorityQueue Works ?

    I Need help because im working with PriorityQueue but i dont understand how they work. This is my code:
    import java.util.PriorityQueue;
    public class PQ {
         public static void main(String... args) {
              PriorityQueue<String> pq = new PriorityQueue<String>();
              pq.add("Maria");
              pq.add("Omar");
              pq.add("Mario");
              pq.add("Juan");
              pq.add("Ana");
              pq.add("Berenice");
              pq.add("Zafiro");
              System.out.println(pq);
    and this is the output:
    [Ana, Juan, Berenice, Omar, Maria, Mario, Zafiro]
    i have thought that the output should not be like that because is using the compareTo of Strings.. but i dont know why that happen
    Someone could explain me how PriorityQueue works.. and why they do that ?

    Or just remove items, check the order on removal, and see for yourself...
    import java.util.PriorityQueue;
    public class PQ {
       public static void main(String... args) {
          PriorityQueue<String> pq = new PriorityQueue<String>(7);
          pq.add("Maria");
          pq.add("Omar");
          pq.add("Mario");
          pq.add("Juan");
          pq.add("Ana");
          pq.add("Berenice");
          pq.add("Zafiro");
          while (pq.size() > 0) {
             System.out.println(pq.remove());
    }

  • How Jaws works?

    Does anybody know how Jaws works?
    What component will be read by Jaws when it's container becomes active windows?
    For example: JDialog
    Environment: Jaws 7.1, windows xp, jdk1.5 , JAB2.0.1
    1. If dialog just contains a JLabel, nothing will be read.
    2. If u use setFocusable(true) to JLabel, Jaws will read dialog title and two times the content of JLabel.
    3. If dialog contains a JTextField, Jaws will read dialog title and two or three times the contents of JTextField.
    Here the code you can try
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import javax.swing.AbstractAction;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class DialogTest {
         protected JFrame frame = null;
         private static int choice = 1;
         public DialogTest(){
              frame = new JFrame("Just a frame");
              frame.setSize(500, 400);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              JButton button1 = new JButton(new MyAction("open dialog"));
              panel.add(button1);
              button1.addKeyListener(new KeyAdapter(){
                   public void keyTyped(KeyEvent e) {                    
                        if(KeyEvent.VK_ENTER == e.getKeyChar()){
                             onOpen();
              frame.getContentPane().add(panel);
              frame.setVisible(true);          
         private void onOpen(){
              JDialog dialog = new JDialog(frame,"Jaws Test Dialog");
              JPanel jp = new JPanel();
              JLabel jl = new JLabel("Will be read by Jaws label");
              JTextField jtf = new javax.swing.JTextField("Will be read by Jaws text field");
              switch(choice){
              case 1:
                   jp.add(jl);
                   break;
              case 2:
                   jp.add(jl);
                   System.out.println(jl.isFocusable());
                   jl.setFocusable(true);
                   break;
              case 3:
                   jtf.setEditable(false);
                   jtf.setBackground(jp.getBackground());
                   jtf.setBorder(javax.swing.BorderFactory.createEmptyBorder());
                   jp.add(jtf);
                   break;
              default :
                   jp.add(jl);
              dialog.getContentPane().add(new JPanel().add(jp));
              dialog.setSize(300, 250);
              dialog.setVisible(true);
         public static void main(String[] args){
              choice = 1;//CHANGE THIS TO TEST DIFFERENT CASE 1 2 3
              new DialogTest();
         class MyAction extends AbstractAction{
              public MyAction(String name){
                   super(name);
              public void actionPerformed(ActionEvent e) {
                   onOpen();
    }Please give your point of view to help me, I am totally confused by this.

    Sorry for resurrecting this 4 year old thread, but I recently encountered the same problem and found a solution.
    You need to
    1. modify the accessible tree to skip the JScrollPane and JViewPort
    2. avoid sending accessible property-changed events from the JEditorPane
    Full details including an example here: [Stack Overflow|http://stackoverflow.com/questions/6684389/jeditorpane-jscrollpane-and-accessibility/6693843#6693843].
    If anyone has any insights into why this works, I would very much appreciate hearing it.
    Best regards,
    Rasmus Faber.

  • How QoS works in UCS

    Hi All,
    I configured QoS in UCS and want to know how it actually works
    Once I configured system classes form GUI following is the configuration found in NXOS
    policy-map type queuing system_q_in_policy
      class type queuing class-platinum
        bandwidth percent 32
      class type queuing class-silver
        bandwidth percent 25
      class type queuing class-bronze
        bandwidth percent 22
      class type queuing class-fcoe
        bandwidth percent 18
      class type queuing class-default
        bandwidth percent 3
    policy-map type queuing system_q_out_policy
      class type queuing class-platinum
        bandwidth percent 32
      class type queuing class-silver
        bandwidth percent 25
      class type queuing class-bronze
        bandwidth percent 22
      class type queuing class-fcoe
        bandwidth percent 18
      class type queuing class-default
        bandwidth percent 3
    Then I created a qos policy called "vm-data-platinum" with rate=1000kbps and
    burst=10240bytes using platinum class.
    Following is the configuration found in nxos.
    policy-map type queuing org-root/ep-qos-vm-data-platinum
      class type queuing class-fcoe
      class type queuing class-default
        bandwidth percent 50
        shape 1000 kbps 10240
    Question1: class-default bandwith in system_q_in_poliy and system_q_out_policy
                    is 3, but in vm-data-platinum it is 50. So how this works?
                    I initially thought that even in vm-data-platinum the bandwidth percent of class-default
                    should be 3.
    Question2: In ep-qos-vm-data-platinum policy-map there is no entry to indicate that this
                     policy uses class platinum and its bandwidth?
                     So how this works?
    Thanks
    Jagath

    Hi All,
    I configured QoS in UCS and want to know how it actually works
    Once I configured system classes form GUI following is the configuration found in NXOS
    policy-map type queuing system_q_in_policy
      class type queuing class-platinum
        bandwidth percent 32
      class type queuing class-silver
        bandwidth percent 25
      class type queuing class-bronze
        bandwidth percent 22
      class type queuing class-fcoe
        bandwidth percent 18
      class type queuing class-default
        bandwidth percent 3
    policy-map type queuing system_q_out_policy
      class type queuing class-platinum
        bandwidth percent 32
      class type queuing class-silver
        bandwidth percent 25
      class type queuing class-bronze
        bandwidth percent 22
      class type queuing class-fcoe
        bandwidth percent 18
      class type queuing class-default
        bandwidth percent 3
    Then I created a qos policy called "vm-data-platinum" with rate=1000kbps and
    burst=10240bytes using platinum class.
    Following is the configuration found in nxos.
    policy-map type queuing org-root/ep-qos-vm-data-platinum
      class type queuing class-fcoe
      class type queuing class-default
        bandwidth percent 50
        shape 1000 kbps 10240
    Question1: class-default bandwith in system_q_in_poliy and system_q_out_policy
                    is 3, but in vm-data-platinum it is 50. So how this works?
                    I initially thought that even in vm-data-platinum the bandwidth percent of class-default
                    should be 3.
    Question2: In ep-qos-vm-data-platinum policy-map there is no entry to indicate that this
                     policy uses class platinum and its bandwidth?
                     So how this works?
    Thanks
    Jagath

  • I really dont understand how this works

    alright first off this isnt for a school assignment so please dont feel guilty about "giving it away"
    alright so this has to do with something called gridworld, if you ever seen it you know what it is, if you havents its basiclly a java built world that has bugs, rocks, flowers, and other things.
    (here is a video showing the basics of gridworld http://www.youtube.com/watch?v=ZnWGOT5Bd2E&feature=related). i program in JCreator btw not greenfoot.
    alright getting to the point i have the code for a bug someone build called a "chameleoncritter". what the bug does is change colors depending on what it is next to, so if it is next to a pink rock it changes pink, ive been reading the code and can honestly not figure out how this method changes its color depending on what it is next to. here is the code
    * AP(r) Computer Science GridWorld Case Study:
    * Copyright(c) 2005-2006 Cay S. Horstmann (http://horstmann.com)
    * This code is free software; you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation.
    * This code is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    * @author Chris Nevison
    * @author Barbara Cloud Wells
    * @author Cay Horstmann
    import info.gridworld.actor.Actor;
    import info.gridworld.actor.Critter;
    import info.gridworld.grid.Location;
    import java.util.ArrayList;
    * A <code>ChameleonCritter</code> takes on the color of neighboring actors as
    * it moves through the grid. <br />
    * The implementation of this class is testable on the AP CS A and AB exams.
    public class ChameleonCritter extends Critter
         * Randomly selects a neighbor and changes this critter's color to be the
         * same as that neighbor's. If there are no neighbors, no action is taken.
        public void processActors(ArrayList<Actor> actors)
            int n = actors.size();
            if (n == 0)
                return;
            int r = (int) (Math.random() * n);
            System.out.println(n);
            Actor other = actors.get(r);
            setColor(other.getColor());
         * Turns towards the new location as it moves.
        public void makeMove(Location loc)
            setDirection(getLocation().getDirectionToward(loc));
            super.makeMove(loc);
    }if anyone can explain to me how this works it would be excellent.
    one more thing, here is a link to the gridworld api (list every method and class and its function).
    http://www.horstmann.com/gridworld/javadoc/
    Edited by: vouslavous on Apr 17, 2009 8:51 PM

    public void processActors(ArrayList<Actor> actors)
            int n = actors.size();
            if (n == 0)
                return;
            int r = (int) (Math.random() * n);
            System.out.println(n);
            Actor other = actors.get(r);
            setColor(other.getColor());
    }Randomly selects a neighbor and changes this critter's color to be the same as that neighbor's. If there are no neighbors, no action is taken.
    Mel

  • How to work on Struts

    Do Struts have patterns? How to work on Struts. ITs new.
    Kiran

    Kiran,
    ::Do Struts have patterns?
    From the book 'Struts in Action'
    Patterns implemented by Struts classes
    Patterns(s)-------------------->Struts Component(s)
    Service to worker-------------->ActionServlet, Action
    Command, Command and Controller,
    Front controller, Singleton,
    Service Location--------------->ActionServlet, Action
    Dispatcher, Navigator---------->ActionMapping, ActionServlet, Action, ActionForward
    View Helper, Session Facade,
    Singleton---------------------->Action
    Transfer Object(Value Object),
    Value Object Assembler--------->ActionForm, ActionErrors, ActionMessages
    View Helper-------------------->ActionForm, ContextHelper, tag extensions
    Composite View, Value Object
    Assembler---------------------->Template taglib, Tiles taglib
    Synchronized Token------------->Action
    Decorator---------------------->ActionMapping::How to work on Struts
    http://jakarta.apache.org/struts/
    Download Struts
    http://jakarta.apache.org/site/binindex.cgi
    see section Struts KEYS
    Download any Servlet/JSP container like Tomcat or any that you like.
    http://jakarta.apache.org/tomcat/
    http://jakarta.apache.org/site/binindex.cgi
    see section Tomcat 5.0.18 KEYS
    Also, use Google to search for keyword struts. You'll see a lot of notes on it.

Maybe you are looking for