openesb-components/ojc-core/jdbcbc/jdbcbcimpl/src/com/sun/jbi/jdbcbc/security/Base64.java

20 lines
336 B
Java
Executable File

/*
* Base64.java
*
* Created on Oct 8, 2007, 4:40:01 PM
*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.sun.jbi.jdbcbc.security;
/**
*
* @author narayan
*/
public interface Base64 {
public String encode(String data);
public String decode(String data);
}