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

20 lines
336 B
Java
Raw Normal View History

2012-11-08 20:12:01 +04:00
/*
* 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);
}